python – Selenium Webdriver错误:“无法加载配置文件”

python – Selenium Webdriver错误:“无法加载配置文件”,第1张

概述我正在使用Selenium Webdriver( Python绑定),我的脚本适用于Mac(OS X 10.6.8),但不适用于PC(Windows 7 Enterprise).这是我得到的错误: C:\Python27>python myscript.pyTraceback (most recent call last): File "myscript.py", line 303, in 我正在使用Selenium Webdriver( Python绑定),我的脚本适用于Mac(OS X 10.6.8),但不适用于PC(windows 7 Enterprise).这是我得到的错误:
C:\Python27>python myscript.pyTraceback (most recent call last):  file "myscript.py",line 303,in <module>    myfunction(arg1)  file "myscript.py",line 87,in myfunction    browser = webdriver.firefox(firefox_profile = fp)  file "C:\Python27\lib\site-packages\selenium\webdriver\firefox\webdriver.py",line 61,in __init__    self.binary,timeout),file "C:\Python27\lib\site-packages\selenium\webdriver\firefox\extension_connection.py",line 47,in __init__    self.binary.launch_browser(self.profile)  file "C:\Python27\lib\site-packages\selenium\webdriver\firefox\firefox_binary.py",in launch_browser    self._wait_until_connectable()  file "C:\Python27\lib\site-packages\selenium\webdriver\firefox\firefox_binary.py",line 105,in _wait_until_connectable    self.profile.path,self._get_firefox_output()))selenium.common.exceptions.WebDriverException: Message: "Can't load the profile. Profile Dir: c:\users\marzagao.1\appdata\local\temp\tmpnn0nhk firefox output: "

这是我的脚本的相关部分(我正在迭代不同的下载文件夹):

for download_folder in List_of_download_folders:    fp = webdriver.firefoxProfile()    fp.set_preference("browser.download.folderList",2)    fp.set_preference("browser.download.manager.showWhenStarting",False)    fp.set_preference("browser.download.dir",download_folder)    fp.set_preference("browser.helperApps.neverAsk.savetodisk","text/plain")    browser = webdriver.firefox(firefox_profile = fp)    # gets URL,download files

我Google了一下,显然这个错误信息可能有不同的原因.我尝试了这个解决方案here,但它不起作用(我想这不适用于我的情况,即使错误消息类似).有什么想法吗?

(windows 7企业版,Service Pack 1,Python 2.7.5,Selenium 2.34,firefox 23.0)

解决方法 似乎还不支持firefox 23.
Selenium 2.34增加了对firefox 22的支持,现在有2.35发布,但没有提到FF23.

所以我建议你将你的firefox降级到v22或尝试新的2.35 selenium库.

https://github.com/SeleniumHQ/selenium/blob/master/py/CHANGES

它在mac上如何工作? – 我不知道,你确定你在那里运行ff23吗?

总结

以上是内存溢出为你收集整理的python – Selenium Webdriver错误:“无法加载配置文件”全部内容,希望文章能够帮你解决python – Selenium Webdriver错误:“无法加载配置文件”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1205130.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存