问题描述:selenium & chromedrive 安装配置完成后,直接在pycharm中使用操作打开chrome浏览器,报错:‘chromedriver’ executable needs to be in Path
- 环境:macOS
- 移动端型号:无
- 移动端系统:无
- 问题复述:selenium&chromedriver安装配置ok,在python中使用时打开chrome浏览器失败,报错:‘chromedriver’ executable needs to be in Path
相关log文件
无
相关代码(包括log文件,都要使用markdown代码格式,)
import selenium
from selenium import webdriver
def test_selenium():
driver = webdriver.Chrome()
driver.get("https://www.baidu.com/")
报错信息:
原因以及解决方式(没有可以写无):
原因:
配置好chromedriver的环境变量后,没有重启pycharm。
解决办法:
重启pycharm后进行运行,运行成功。