selenium出错:site-packages\selenium\webdriver\common\service.py", line 76, in start
Traceback (most recent call last):File "D:\Python36\lib\site-packages\selenium\webdriver\common\service.py", line 76, in startstdin=PIPE)File "D:\Python36\lib\subprocess.py", line 709, i...
Traceback (most recent call last):
File "D:\Python36\lib\site-packages\selenium\webdriver\common\service.py", line 76, in start
stdin=PIPE)
File "D:\Python36\lib\subprocess.py", line 709, in __init__
restore_signals, start_new_session)
File "D:\Python36\lib\subprocess.py", line 997, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] 系统找不到指定的文件。
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "D:/PycharmProjects/chapter11/seleniumExample.py", line 2, in <module>
browser = webdriver.Chrome()
File "D:\Python36\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 68, in __init__
self.service.start()
File "D:\Python36\lib\site-packages\selenium\webdriver\common\service.py", line 83, in start
os.path.basename(self.path), self.start_error_message)
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
Process finished with exit code 1
根据错误提示:Message: 'chromedriver' executable needs to be in PATH我们可以找到原因所在:chromedriver需要放在python安装路径下。
所以要把chromedriver放到python安装路径下就可以了,不要放到chrome安装目录下,没有起作用
可以从下面下载chromedriver,不同chrome版本,要下载不同chromedriver的版本,要注意对应呀
引用的chorme版本:
# Chrome/81.0.4044.20 就是引用的chorme版本,挑选对应的,也可以自己改
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.20 Safari/537.36',
}
下面是chromedriver下载的路径,请放心下载使用
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐

所有评论(0)