欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python+selenium+chrome driver 环境配置

程序员文章站 2022-10-03 13:54:55
1、下载安装包selenium 3.141.0https://pypi.org/project/selenium/查看版本 chrome://version/下载chrome对应的chromedriver_win32.zip版本http://chromedriver.storage.googleapis.com/index.html?2、安装selenium直接pip install Selenium或者下载包文件,到Python安装路径的Lib路径下解压后 cmd中python s...

Python Selenium库的使用
selenium用法详解
Python爬虫之Selenium库的使用

python3 + selenium3 + PO + yaml + ddt + unittest等技术编写成基础测试框架

https://blog.csdn.net/tianjing222/article/details/79051221
https://blog.csdn.net/luanpeng825485697/article/details/78436963

https://www.jianshu.com/p/1b63c5f3c98e
1、下载安装包
selenium 3.141.0
https://pypi.org/project/selenium/
python+selenium+chrome driver 环境配置

查看版本 chrome://version/
python+selenium+chrome driver 环境配置
下载chrome对应的chromedriver_win32.zip版本
http://chromedriver.storage.googleapis.com/index.html?
python+selenium+chrome driver 环境配置
2、安装

selenium直接pip install Selenium
或者下载包文件,到Python安装路径的Lib路径下解压后 cmd中python setup.py install
pip show Selenium可以查看版本号

chromedriver解压后放到chrome执行路径下,然后配置环境变量
python+selenium+chrome driver 环境配置

pycharm更新库文件
pycharm更新库
python+selenium+chrome driver 环境配置

上代码

from selenium import webdriver

from time import sleep
#1.创建Chrome浏览器对象,这会在电脑上在打开一个浏览器窗口
browser = webdriver.Chrome(executable_path ="C:\Program Files (x86)\Google\Chrome\Application\chromedriver")

#2.通过浏览器向服务器发送URL请求
browser.get("https://www.baidu.com/")

sleep(3)

#3.刷新浏览器
browser.refresh()

#4.设置浏览器的大小
browser.set_window_size(1400,800)

#5.设置链接内容
element=browser.find_element_by_link_text("新闻")
element.click()

element=browser.find_element_by_link_text("“下团组”时间")
element.click()

效果python+selenium+chrome driver 环境配置

from selenium import webdriver        # 导入selenium框架包中的webdriver模块
driver = webdriver.Chrome(executable_path ="C:\Program Files (x86)\Google\Chrome\Application\chromedriver") # 调用webdriver模块中Chrome方法自动打开谷歌浏览器
driver.get("http://baidu.com")        # 打开你要测试的网址

python+selenium+chrome driver 环境配置

本文地址:https://blog.csdn.net/chuang504321176/article/details/109633385