想要用selenium模拟打开chorme结果报错

问题遇到的现象和发生背景

selenium模拟打开chorme报错

问题相关代码,请勿粘贴截图

from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://www.baidu.com')

运行结果及报错内容

C:\Users\陈叙元\PycharmProjects\pythonProject2\venv\Scripts\python.exe C:/Users/陈叙元/PycharmProjects/pythonProject2/main.py
Traceback (most recent call last):

FileNotFoundError: [WinError 2] 系统找不到指定的文件。

During handling of the above exception, another exception occurred:

我的解答思路和尝试过的方法

Chromedriver配置环境变量

我想要达到的结果

pycharm没有找到python文件,看下python解释器路径对不对?

img