当前位置:首页 » 《关于电脑》 » 正文

Chrome webdriver下载-避坑

12 人参与  2024年12月23日 16:00  分类 : 《关于电脑》  评论

点击全文阅读


WebDriver以原生的方式驱动浏览器,不需要调整环境变量。

一、window版

1.chrome和chromedriver下载地址:

Chrome for Testing availability

我下载的是如下两个安装包,解压即可。

2.导包

pip install selenium

然后用python代码引用即可

二、Linux版

1.chrome和chromedriver下载地址:Chrome for Testing availability

操作步骤:

#chromeunzip chrome-linux64.zipsudo mv chrome-linux64 /opt/google-chromesudo ln -s /opt/google-chrome/chrome /usr/bin/google-chrome#通过在终端中输入 google-chrome 来运行 Chrome#chromdriverunzip chromedriver-linux64.zipsudo mv chromedriver-linux64/chromedriver /usr/local/bin/sudo chmod +x /usr/local/bin/chromedriver#使用方法from selenium import webdriverfrom selenium.webdriver.chrome.service import Servicefrom selenium.webdriver.chrome.options import Optionsdef get_webdriver():    options = Options()    options.add_argument("--headless")  # 如果需要无头模式    service = Service('/usr/local/bin/chromedriver')    return webdriver.Chrome(service=service, options=options)# 使用 WebDriverdriver = get_webdriver()driver.get('https://www.example.com')print(driver.title)driver.quit()

查看版本看是否匹配:

chromedriver --versiongoogle-chrome --version


点击全文阅读


本文链接:http://m.zhangshiyu.com/post/205769.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1