python自动化测试selenium操作下拉列表实现
处理下拉列表需要使用selenium中的工具类Select,常用方法如下:
文章图片
示例网站:http://sahitest.com/demo
示例场景:打开Sahi Tests页面,
(1)点击“Select Test”页面,鼠标点击页面中第一个下拉列表。
文章图片
文章图片
示例脚本:
from selenium import webdriverfrom time import sleepfrom selenium.webdriver.support.select import Selectclass TestSelected(object):def setup(self):self.driver = webdriver.Chrome()self.driver.get("https://sahitest.com/demo/") def test_selected(self):#点“Select Test”链接self.driver.find_element_by_xpath("/html/body/table/tbody/tr/td[1]/a[4]").click()#点第一个下拉框se=self.driver.find_element_by_id("s1Id")#选中下拉框选项select=Select(se) #循环打印下拉框选项for options in select.options:print(options.text)
运行结果:
文章图片
(2)操作多选列表
文章图片
示例脚本:
from selenium import webdriverfrom time import sleepfrom selenium.webdriver.support.select import Selectclass TestSelected(object):def setup(self):self.driver = webdriver.Chrome()self.driver.get("https://sahitest.com/demo/")def test_multiselected(self):#点“Select Test”链接self.driver.find_element_by_xpath("/html/body/table/tbody/tr/td[1]/a[4]").click()#列表多选框mulsel = self.driver.find_element_by_id("s4Id")select2 = Select(mulsel)#选择列表中所有选项for i in range(6):select2.select_by_index(i)#根据索引值反选# select2.deselect_by_index(i)sleep(1)sleep(2)#反选所有select2.deselect_all()self.driver.quit()
以上:极客时间课程:selenium自动化测试学习总结!
【python自动化测试selenium操作下拉列表实现】以上就是python自动化测试selenium操作下拉列表实现的详细内容,更多关于selenium操作下拉列表的资料请关注脚本之家其它相关文章!
推荐阅读
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- python自定义封装带颜色的logging模块
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- Python基础|Python基础 - 练习1
- Python爬虫|Python爬虫 --- 1.4 正则表达式(re库)
- Python(pathlib模块)
- 人脸识别|【人脸识别系列】| 实现自动化妆
- python青少年编程比赛_第十一届蓝桥杯大赛青少年创意编程组比赛细则
- Python数据分析(一)(Matplotlib使用)