Python之Selenium自动化浏览器测试详解
作者:Harris-H 时间:2022-08-19 00:04:55
Python之Selenium(自动化浏览器测试)
1.安装selenium
pip install selenium -i https://pypi.tuna.tsinghua.edu.cn/simple
2.下载对应版本的浏览器驱动
http://npm.taobao.org/mirrors/chromedriver/
这是我的。
把解压后的驱动放在自己的python.exe 目录下。
3.测试code,打开一个网页,并获取网页的标题
from selenium.webdriver import Chrome
if __name__ == '__main__':
web = Chrome()
web.get("https://baidu.com")
print(web.title)
4.一个小样例
from selenium.webdriver import Chrome
if __name__ == '__main__':
web = Chrome()
url = 'https://ac.nowcoder.com/acm/home'
web.get(url)
# 获取要点击的a标签
el = web.find_element_by_xpath('/html/body/div/div[3]/div[1]/div[1]/div[1]/div/a')
# 点击
el.click() # "/html/body/div/div[3]/div[1]/div[2]/div[2]/div[2]/div[1]/h4/a"
# 爬取想要的内容
lists = web.find_elements_by_xpath("/html/body/div/div[3]/div[1]/div[2]/div[@class='platform-item js-item ']/div["
"2]/div[1]/h4/a")
print(len(lists))
for i in lists:
print(i.text)
5.自动输入并跳转
from selenium.webdriver import Chrome
from selenium.webdriver.common.keys import Keys
import time
if __name__ == '__main__':
web = Chrome()
url = 'https://ac.nowcoder.com/acm/home'
web.get(url)
el = web.find_element_by_xpath('/html/body/div/div[3]/div[1]/div[1]/div[1]/div/a')
el.click()
time.sleep(1)
input_el = web.find_element_by_xpath('/html/body/div/div[3]/div[1]/div[1]/div[1]/form/input[1]')
input_el.send_keys('牛客', Keys.ENTER)
# do something
来源:https://harris.blog.csdn.net/article/details/116406200
标签:Python,Selenium,自动化,测试
0
投稿
猜你喜欢
基于torch.where和布尔索引的速度比较
2021-10-07 16:20:54
Vue+Flask实现图片传输功能
2024-05-21 10:15:34
对pandas将dataframe中某列按照条件赋值的实例讲解
2023-03-12 07:24:58
MSSQL2005数据附加失败报错3456解决办法
2024-01-17 23:17:29
Python中pandas模块DataFrame创建方法示例
2022-07-19 03:06:09
一文搞懂关于 sys.argv 的详解
2023-12-12 14:30:44
Finished with error:Navicat运行SQL文件报错的解决
2024-01-28 01:40:03
Go singleflight使用以及原理
2024-04-27 15:31:09
关于Python内存分配时的小秘密分享
2023-10-07 15:26:16
面向新手解析python Beautiful Soup基本用法
2023-11-06 22:29:50
Python代码阅读--列表元素逻辑判断
2022-08-05 16:12:57
SQL Server保障数据一致性的法宝
2008-12-26 15:21:00
C# SQLite数据库入门使用说明
2024-01-25 20:01:20
vant中的toast轻提示实现代码
2024-04-26 17:38:53
dir()、readdir()、scandir()和glob()四种遍历目录方法及性能分析
2023-05-25 11:18:27
js 获取经纬度的实现方法
2024-06-10 16:56:45
玩转python爬虫之URLError异常处理
2021-03-22 07:36:34
浏览器事件循环与vue nextTicket的实现
2024-05-09 09:25:26
Python的包管理器pip更换软件源的方法详解
2023-02-03 05:25:22
Python中的wordcloud库安装问题及解决方法
2022-04-14 21:38:43