gpt4 book ai didi

python - Selenium Webdriver 错误 : "Can' t load the profile"

转载 作者:太空狗 更新时间:2023-10-30 01:22:56 25 4
gpt4 key购买 nike

我使用的是 Selenium Webdriver(Python 绑定(bind)),我的脚本可以在 Mac (OS X 10.6.8) 上运行,但不能在 PC (Windows 7 Enterprise) 上运行。这是我得到的错误:

C:\Python27>python myscript.py
Traceback (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_conne
ction.py", line 47, in __init__
self.binary.launch_browser(self.profile)
File "C:\Python27\lib\site-packages\selenium\webdriver\firefox\firefox_binary.
py", line 61, 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 out
put: "

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

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

我用谷歌搜索了一下,显然这条错误消息可能有不同的原因。我试过这个解决方案 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 错误 : "Can' t load the profile",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18164933/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com