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 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下载的路径,请放心下载使用

http://chromedriver.storage.googleapis.com/index.html

猜你喜欢

转载自blog.csdn.net/sun124608666/article/details/104810330
76