我正在尝试使用Selenium运行脚本并不断收到错误消息:
FileNotFoundError: [Errno 2] No such file or directory: 'geckodriver': 'geckodriver'
到目前为止,我已经尝试通过以下方法对此进行补救:
我一直在Google搜索和观看YouTube视频一整天,但没有取得任何进展。任何帮助将不胜感激。
编辑:
代码只是“自动化无聊的事情”中网络抓取章节的第一个脚本:
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://inventwithpython.com')