系统相关
首页 > 系统相关> > Windows python3 安装selenium且使用

Windows python3 安装selenium且使用

作者:互联网

直接在终端执行

pip install selenium

测试

from selenium import webdriver


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

 

报错了,提示的是找不到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")

 

下载地址:

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

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

 

更多使用方法,参考

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

 

 

 

 

标签:webdriver,www,http,Windows,selenium,chromedriver,brower,python3
来源: https://blog.csdn.net/wojiuwangla/article/details/117132454