在pycharm中打开一个项目后,点击Setting(ALT+Ctrl+S快捷键)
然后点击install package完成后点击关闭这个窗口,就可以在代码中使用selenium了
成功后出现如下界面
编写一段正常可以运行操作chorme浏览器的
python
from selenium import webdriver
# 指定ChromeDriver的路径
driver = webdriver.Chrome()
driver.get('https://www.baidu.com') # 打开登录页面
print(driver.title)
driver.quit()
然后我运行后就出现一个问题
The chromedriver version (127.0.6533.99) detected in PATH at D:\Program Files\Python312\chromedriver.exe might not be compatible with the detected chrome version (128.0.6613.120); currently, chromedriver 128.0.6613.119 is recommended for chrome 128.*, so it is advised to delete the driver in PATH and retry
大概意思就是我的chrom浏览器的driver没匹配上,重新去下载一个chromedriver.exe放在D:\Program Files\Python312中
这里插入一下chromedriver的下载地址
Chrome for Testing availability
更新好chromeDriver后,一切就正常了
这样就做好了一个python控制Chrome浏览器的插件