options = FirefoxOptions()
options.add_argument("--headless")
driver = webdriver.Firefox(firefox_options=options, executable_path='/Users/toprak/Desktop/geckodriver')
driver.get("https://twitter.com/login?lang=en")
当我尝试运行我的代码时,我得到这个错误:
Warning (from warnings module):
File "/Users/toprak/Desktop/topla.py", line 19
driver = webdriver.Firefox(firefox_options=options, executable_path='/Users/toprak/Desktop/geckodriver')
DeprecationWarning: use options instead of firefox_options
Traceback (most recent call last):
File "/Users/toprak/Desktop/topla.py", line 19, in <module>
driver = webdriver.Firefox(firefox_options=options, executable_path='/Users/toprak/Desktop/geckodriver')
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/firefox/webdriver.py", line 137, in __init__
if options.binary is not None:
AttributeError: 'Options' object has no attribute 'binary'
当我删除关于选项的行并取出“firefox_options=options”时,代码工作正常。我该怎么做才能解决这个问题?
3条答案
按热度按时间rqqzpn5f1#
而不是使用
firefox_options
对象,你需要使用options
对象。此外,您还需要使用headless
属性。因此,您的有效代码块将是:参考资料
您可以在以下内容中找到一些相关的详细讨论:
shstlldc2#
--headless
参数目前在Firefox(geckodriver)中运行良好。如果你得到标题中提到的错误,那么你可能不小心创建或传递了一个基于Chrome的Options对象,而不是基于Firefox的Options对象。
为了避免这种错误,最好为它们都创建一个导入别名,以便更容易区分它们。
nuypyhwy3#
这四条线帮助了我:
如果仍然出现错误,可以尝试将第四行替换为
driver = webdriver.Firefox(options=options)
参考-Unable to invoke firefox headless