selenium可以与许多浏览器兼容,这里我们以Google Chrome为例
首先问题思考方向:
1.下载的chromedriver驱动版本问题(必须与自己的浏览器版本对应)
2.chromedriver驱动添加到path环境变量 ,这里有人可能想问怎么添加环境变量?
演示:
打开电脑属性
3.使用代码测试
from selenium import webdriver
import time
option = webdriver.ChromeOptions()
#绝对路径
option.binary_location=r'D:\Google\Chrome\Application\chrome.exe'
driver=webdriver.Chrome() #创建驱动对象
driver.get("//https:www.baidu.com") #打开
time.sleep(10)
driver.quit() #程序执行完自动关闭