pycharm如何安装selenium

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浏览器的插件

相关推荐
超级小的大杯柠檬水11 小时前
修改Anaconda中Jupyter Notebook默认工作路径的详细图文教程(Win 11)
ide·python·jupyter
niuniu_66613 小时前
简单的自动化场景(以 Chrome 浏览器 为例)
运维·chrome·python·selenium·测试工具·自动化·安全性测试
色空大师13 小时前
【idea】实用插件
java·ide·intellij-idea
suanday_sunny14 小时前
VSCode运行,各类操作缓慢,如何清理
ide·vscode·编辑器
信计小白14 小时前
vscode报Module containing this breakpoint has not yet loaded
ide·vscode·编辑器
小杨40414 小时前
python入门系列十三(多线程)
人工智能·python·pycharm
MonkeyKing_sunyuhua1 天前
Visual Studio Code 进行汉化
ide·vscode·编辑器
悠夏安末1 天前
intellij Idea 和 dataGrip下载和安装教程
java·ide·intellij-idea
suimeng61 天前
ChromeDriver的常用方法
java·selenium
步木木1 天前
Anaconda和Pycharm的区别,以及如何选择两者
ide·python·pycharm