Selenium Webdriver (Python バインディング) を使用しており、スクリプトは 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
私はググってみましたが、どうやらこのエラーメッセージにはさまざまな原因があるようです。ここでこの解決策を試しましたが、うまくいきませんでした (エラーメッセージは似ていますが、私のケースには当てはまらないと思います)。何かご意見は?
(Windows 7 Enterprise、サービス パック 1、Python 2.7.5、Selenium 2.34、Firefox 23.0)