selenium
Selenium
是广泛使用的模拟浏览器运行的库,它是一个用于Web
应用程序测试的工具。 Selenium
测试直接运行在浏览器中,就像真正的用户在操作一样,并且支持大多数现代 Web
浏览器。
对应版本chrome驱动下载
- 查看浏览器对应的chrome版本
- 浏览器输入
chrome://version/
114以及之前的chrome版本
http://chromedriver.storage.googleapis.com/index.html
119/120/121的chrome版本
https://googlechromelabs.github.io/chrome-for-testing/
- 只看最前面的版本,比如
119
chromedriver安装
解压之后,将chromedriver.exe
文件复制并粘贴到对应的python
文件目录中,之后便不再需要设置路径,python
会自动进行查找。
文章来源:https://www.toymoban.com/news/detail-751948.html
执行selenium代码
- 用
selenium
打开百度网址
from selenium import webdriver
driver = webdriver.Chrome() # 代码在执行的时候回自行去寻找chromedriver.exe(在python目录下寻找),不再需要制定chromedriver.exe路径
driver.get("http://www.baidu.com")
print(driver.current_url)
成功打开!
文章来源地址https://www.toymoban.com/news/detail-751948.html
到了这里,关于selenium下载安装对应的chromedriver并执行的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!