在 Firefox 中以离线模式运行 Selenium RC 测试
有没有办法在离线模式下运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
博客中的以下描述 帮助我解决了同样的问题,但是使用 selenium 和 java junit 测试。
由于不太了解如何从 python 运行 selenium,我不知道您在哪里使用 firefox 配置文件启动 selenium RC 服务器。
IE
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