selenium下载安装对应的chromedriver并执行

文章目录

        • selenium
        • 对应版本chrome驱动下载
          • 114以及之前的chrome版本
          • 119/120/121的chrome版本
        • chromedriver安装
        • 执行selenium代码

selenium

Selenium是广泛使用的模拟浏览器运行的库,它是一个用于Web应用程序测试的工具。 Selenium测试直接运行在浏览器中,就像真正的用户在操作一样,并且支持大多数现代 Web 浏览器。

对应版本chrome驱动下载
  • 查看浏览器对应的chrome版本
  • 浏览器输入chrome://version/selenium下载安装对应的chromedriver并执行_第1张图片
114以及之前的chrome版本

http://chromedriver.storage.googleapis.com/index.html
selenium下载安装对应的chromedriver并执行_第2张图片

119/120/121的chrome版本

https://googlechromelabs.github.io/chrome-for-testing/

  • 只看最前面的版本,比如119
    selenium下载安装对应的chromedriver并执行_第3张图片
chromedriver安装

解压之后,将chromedriver.exe文件复制并粘贴到对应的python文件目录中,之后便不再需要设置路径,python会自动进行查找。
selenium下载安装对应的chromedriver并执行_第4张图片

执行selenium代码
  • selenium打开百度网址
from selenium import webdriver

driver = webdriver.Chrome() #  代码在执行的时候回自行去寻找chromedriver.exe(在python目录下寻找),不再需要制定chromedriver.exe路径
driver.get("http://www.baidu.com")
print(driver.current_url)

成功打开!
selenium下载安装对应的chromedriver并执行_第5张图片

你可能感兴趣的:(python爬虫入门教程,selenium,测试工具,pandas,机器学习,人工智能,numpy,python)