如何将用户名和密码添加到硒网格

发布于 2025-01-24 08:31:01 字数 307 浏览 0 评论 0原文

我已经安装了Docker Image selenium/stelenium/standalone-chrome 我可以根据需要从公共IP访问它,但是我想使用用户名和密码保护它。 我认为我必须将VNET添加到我的Azure设置中才能确保它。

但是我想听听你们中的一些人是否知道图像中的命令,我可以打电话给Selenium Grid中添加用户名和密码?

I have installed the Docker image selenium/standalone-chrome in an Azure Container Instance and I can access it from the public IP as I want, but I would like to secure it with a username and a password.
I think the I have to add vnet to my Azure setup to secure it.

but I would like to hear if some of you knows a command in the image, that I could call to add a username and password to the Selenium Grid?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏佲洛 2025-01-31 08:31:02

看来您可以在硒枢纽/独立Docker映像上配置基本自动化。

相关配置项目

” Docker Image,我看到的示例 on github 例如:

docker run -d -p 4444:4444 --shm-size="2g" -e SE_OPTS="--username MYUSER --password MYPASSWD" selenium/standalone-firefox:4.19.0-20240328

我打算在有时间的时候自己对此进行测试,但不确定我能尽快做到这一点。

It seems that you can configure basic autentication on a Selenium Hub/Standalone docker image.

The relevant config items on Selenium documentation

For the docker image, the example I saw on Github is using the SE_OPTS environment variable, for instance:

docker run -d -p 4444:4444 --shm-size="2g" -e SE_OPTS="--username MYUSER --password MYPASSWD" selenium/standalone-firefox:4.19.0-20240328

I am planning to test this myself when I have time, but not sure I can do it anytime soon.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文