Selenium官方中文文档:https://www.selenium.dev/zh-cn/documentation/
本文是基于Python下的Selenium操作
导入模块
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
webdriver
是 Selenium 提供的一个模块,用于创建浏览器实例和执行与浏览器交互的操作。webdriver.chrome.service
则是该模块中的一个子模块,用于配置和管理 Chrome 浏览器的服务。
这段代码使用了 Selenium 的 WebDriver 模块,并且使用 ChromeDriver 作为 Chrome 浏览器的服务来进行自动化测试。
创建对象
我们需要将 浏览器驱动chromedriver.exe 放到程序运行目录
wd = webdriver.Chrome(service = Service(r'chromedriver.exe'))
创建Webdriver对象,指定chrome浏览器驱动路径
当这句代码执行以后,chrome浏览器就会运行
打开网址
使用WebDriver的get方法打开本博客
wd.get('https://www.yuofyou.cn')