安装测试python及seleniumey 及chromedriver

  • 十二、安装seleniumey 及chromedriver浏览器驱动

    • 安装/卸载-第三方包

      • 在界面最下方 terminal中输入pip install selenium【安装第三方包】

      • 卸载——pip uninstall 包名

    • 安装seleniumey 及chromedriver浏览器驱动

    • ——敲代码的令狐葱

      • 安装seleniumey 及chromedriver浏览器驱动【文章链接】

      • 找到“三、安装chromedriver“——”淘宝NPM链接“淘宝NPM链接:https://npm.taobao.org/

      • 通过百度,搜索“chrome和chromedriver的对照表”,选择⾃⼰的合适的chromedriver

        • 【令狐】对照表链接:https://blog.csdn.net/huilan_same/article/details/51896672/
      • 或直接搜索淘宝NPM链接

        • http://npm.taobao.org/mirrors/electron/

        • https://developer.aliyun.com/mirror/NPM?from=tnpm

      • 打到ChromeDriver 镜像: http://npm.taobao.org/mirrors/chromedriver

      • 打开google chrome,查找版本号

      • 通过百度,搜索“chrome和chromedriver的对照表”,选择⾃⼰的合适的chromedriver

    • 安装——已建文件夹中的——software_python_scripts,(将文件移入)

测试(打开浏览器)>

import requests
import time
from selenium import webdriver

start_url="https;//www.baidu.com" #https://www.baidu.com
driver = webdriver.chrome()
driver.get(url=start_url)
print(html)  #打印

time.sleep(2)
driver.close()  #关闭浏览器

运行结果,表示确少“time”模块

你可能感兴趣的:(安装测试python及seleniumey 及chromedriver)