在 Firefox 中以离线模式运行 Selenium RC 测试

发布于 2024-09-08 06:33:04 字数 376 浏览 2 评论 0原文

有没有办法在离线模式下运行 Selenium 测试?如果我在 Firefox 配置文件中设置离线模式,selenium 会卡在 selenium.start() 处。我正在使用 python 客户端驱动程序。代码如下

sel = selenium('localhost', 4444, '*firefox', 'file:///home/user/selenium/selenium-python/client-driver-1.0.1/inputs/input.html')
sel.start()
sel.open('file:///home/user/selenium/selenium-python/client-driver-1.0.1/inputs/input.html')

Is there a way to run Selenium test in offline mode? If I set the offline mode in the firefox profile, selenium is stuck at selenium.start(). I'm using the python client driver. The code is as below

sel = selenium('localhost', 4444, '*firefox', 'file:///home/user/selenium/selenium-python/client-driver-1.0.1/inputs/input.html')
sel.start()
sel.open('file:///home/user/selenium/selenium-python/client-driver-1.0.1/inputs/input.html')

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

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

发布评论

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

评论(1

江心雾 2024-09-15 06:33:04

博客中的以下描述 帮助我解决了同样的问题,但是使用 selenium 和 java junit 测试。

由于不太了解如何从 python 运行 selenium,我不知道您在哪里使用 firefox 配置文件启动 selenium RC 服务器。

IE

java -jar selenium-server.jar -firefoxProfileTemplate “”

The following description in a blog helped me to fix the same problem, but using selenium with java junit tests.

Without knowing to much about running selenium from python, I do not see where you are starting the selenium RC server with the firefox profile.

i.e

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