python – 如何显式指定Firefox的Selenium路径?

前端之家收集整理的这篇文章主要介绍了python – 如何显式指定Firefox的Selenium路径?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我得到了Selenium IDE,接着是 this post,到了
python test_default_server.py

并且它抱怨Firefox不在我的路上:

Please add the directory containing ''firefox.exe'' to your PATH environment
variable,or explicitly specify a path to Firefox 3 like this:
*firefox3c:\blah\firefox.exe

我可以改变我的PATH环境变量,但我宁愿追求他们提到的本地配置选项(“明确指定一个路径”).我怎么做? “* firefox3c”是指什么?

Selenium 1.0.1,Python 2.5,Windows XP.

解决方法

当您实例化硒而不是“* firefox”时,您必须使用以下字符串:
"*firefox C:\\Program Files\\Mozilla Firefox\\firefox.exe"

注意:我不确定路径是否正确,但应该是类似的.

更新:您在哪里实例化浏览器?
通过问题中的标签,我想你是一个Python的家伙:

def setUp(self):
    self.verificationErrors = []
    self.selenium = selenium("localhost",4444,"*firefox C:\\Program Files\\Mozilla Firefox\\firefox.exe","http://change-this-to-the-site-you-are-testing/")
    self.selenium.start()
原文链接:https://www.f2er.com/python/186661.html

猜你在找的Python相关文章