Windows python3 安装selenium且使用

直接在终端执行

pip install selenium

Windows python3 安装selenium且使用

测试

from selenium import webdriver


brower = webdriver.Chrome()
brower.get("http://www.baidu.com")

 

Windows python3 安装selenium且使用

报错了,提示的是找不到chromedriver

解决方法:

指定路径

from selenium import webdriver

dr_path = r"C:\Users\Administrator\Desktop\chromedriver.exe"
brower = webdriver.Chrome(executable_path=dr_path)
brower.get("http://www.baidu.com")

Windows python3 安装selenium且使用

 

Windows python3 安装selenium且使用

下载地址:

http://chromedriver.storage.googleapis.com/index.html

下载跟自己浏览器对应版本的就行

 

更多使用方法,参考

http://www.selenium.org.cn/1598.html

 

 

 

 

上一篇:linux 安装chromedriver


下一篇:Selenium chromeDriver启动时报错:session not created: This version of ChromeDriver only supports Chrome