错误 - 消息:无法加载配置文件。配置文件Dir ...使用Firefox进行Selenium Web Scraping

时间:2016-06-22 17:42:39

标签: python selenium web-scraping

我正在使用硒运行网络刮刀,不时,我

ERROR - Message: Can't load the profile. Profile Dir: %s If you specified a log_file in the FirefoxBinary constructor, check it for details.

我知道这意味着selenium无法打开会话,但我该如何解决?我应该使用指数退避的重试机制吗?它是硒中的一个错误吗?

我不知道,但解决这个问题的任何帮助都将非常感激。感谢。

1 个答案:

答案 0 :(得分:0)

$ brew install geckodriver
$ pip install -U selenium

firefox_capabilities = DesiredCapabilities.FIREFOX
firefox_capabilities['marionette'] = True

driver = webdriver.Firefox(capabilities=firefox_capabilities)
driver.get('http://example.com')