小辉辉坏蛋 发表于 2017-7-5 14:21:13

一调用chromedriver就会报错找不到文件,怎么配置才正确?

Traceback (most recent call last):
File "C:\Devlop\Python36\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start
    stdout=self.log_file, stderr=self.log_file)
File "C:\Devlop\Python36\lib\subprocess.py", line 707, in __init__
    restore_signals, start_new_session)
File "C:\Devlop\Python36\lib\subprocess.py", line 990, in _execute_child
    startupinfo)
FileNotFoundError: 系统找不到指定的文件。

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
    driver = webdriver.Chrome()
File "C:\Devlop\Python36\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 62, in __init__
    self.service.start()
File "C:\Devlop\Python36\lib\site-packages\selenium\webdriver\common\service.py", line 81, 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


小辉辉坏蛋 发表于 2017-7-5 14:31:14

谷歌浏览器是59版本,chromedriver是2.30

finomy 发表于 2017-7-5 14:40:49

用os.path.abspath把chromedriver的绝对路径加进去
页: [1]
查看完整版本: 一调用chromedriver就会报错找不到文件,怎么配置才正确?