1谷歌浏览器的下载
官网地址: https://www.google.cn/chrome/
2下载完之后直接双击安装谷歌浏览器
3查看当前谷歌浏览器的版本
4 下载谷歌浏览器的驱动
官网驱动地址:https://chromedriver.storage.googleapis.com/index.html
注意:只要大版本号101能对上即可,点击下载
5将下载的安装包解压
6将驱动复制到python的安装目录下
注意:需要根据你实际的python安装位置放置
7pyCharm新建脚本启动谷歌浏览器
注意:驱动位置一定要正确,否则无法启动
from selenium import webdriver
from selenium.webdriver.chrome.service import Service# 创建 WebDriver 对象,指明使用chrome浏览器驱动
wd = webdriver.Chrome(service=Service(r'F:\work\python\python_location2\chromedriver.exe'))# 调用WebDriver 对象的get方法 可以让浏览器打开指定网址
wd.get('http://ss.tw-iot.cn/')
8学习目录
https://blog.csdn.net/baidu_28767649/article/details/124835467