我正在使用硒运行网络刮刀,不时,我
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无法打开会话,但我该如何解决?我应该使用指数退避的重试机制吗?它是硒中的一个错误吗?
我不知道,但解决这个问题的任何帮助都将非常感激。感谢。
答案 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')