经过长时间的编程休息后,我想重新开始使用 selenium。我已经安装了最新版本,并将 geckodriver 可执行文件放在 PATH 中,但出现错误。
Traceback (most recent call last):
File "/home/pi/Desktop/test.py", line 3, in <module>
browser = webdriver.Firefox()
File "/home/pi/Desktop/selenium/webdriver/firefox/webdriver.py", line 164, in __init__
self.service.start()
File "/home/pi/Desktop/selenium/webdriver/common/service.py", line 76, in start
stdin=PIPE)
File "/usr/lib/python3.7/subprocess.py", line 775, in __init__
restore_signals, start_new_session)
File "/usr/lib/python3.7/subprocess.py", line 1522, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
OSError: [Errno 8] Exec format error: 'geckodriver
我的脚本是:
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://seleniumhq.org/')
我现在搜索了很长时间,但没有找到任何东西。我希望some1可以帮助我。
最大限度
编辑:我通过使用自己修复了它sudo apt-get install chromium-chromedriver
感谢评论中的那个人的帮助