尝试在Python脚本中将Selenium与Chrome结合使用。
我收到以下错误:
WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
我知道chromedriver可执行文件的位置。如何将其添加到PATH?
谢谢
您可以在脚本中指定chrome驱动程序的绝对路径,如下所示:
from selenium import webdriver driver = webdriver.Chrome(executable_path='/path/to/driver/chromedriver')
或者,您可以按以下方式在PATH系统变量中将路径添加到Webdriver :
PATH
export PATH=$PATH:/path/to/driver/chrome-driver
您可以将以上行添加到/home/<user>/.profile文件中以使其永久。
/home/<user>/.profile
在运行Python 2.7.14的Ubuntu 17.10上测试
希望这可以帮助!