在Selenium-python中执行chromedriver时面临以下错误。
错误:WebDriver异常:"chromedriver"可执行文件需要位于 PATH 中。请参阅 https://sites.google.com/a/chromium.org/chromedriver/home
驱动程序 = 网络驱动程序。Chrome(executable_path="F:/SSN/SSN/Python/chromedriver"(
driver: WebDriver = webdriver.Chrome("/Users/this can change/PycharmProjects/this is the title of the project/drivers/chromedriver")
所以为了达到上述一点: 1(下载Chromedriver(我猜你已经做到了( 2(在您的项目标题上(如果您使用pycharm,则在左上(,然后单击dx打开菜单>New>Directory并给出新目录的名称"驱动程序"。 3(从下载forlder,或您的chromedriver.exe文件在步骤1中下载的任何位置(,将其拖到"下载"文件夹中。 4(点击文件夹"驱动程序">点击"复制路径" 5(在driver: WebDriver = webdriver.Chrome("HERE")
之后通过"复制路径"
如果这个解释听起来很困难,请单击此处:https://www.youtube.com/watch?v=eDrFWRi13DY
您可以尝试如下
driver = webdriver.Chrome(executable_path=r'Path_to_chrome_Driver\chromedriver.exe')
请下载硒铬驱动程序。然后输入镶边驱动程序位置。
注意:请确保您已根据您的 chrome 浏览器版本下载了正确的 chromedriver 。