编程语言
首页 > 编程语言> > python-selenium对下拉选择框的操作,Select类

python-selenium对下拉选择框的操作,Select类

作者:互联网

首先要确认下拉选择框,是通过html中的select-option标签组合而成的

**Select类只能操作select-option组成的下拉选择框**,例如
<select id="s1Id">
<option></option>
<option value="o1" id="id1">o1</option>
<option value="o2" id="id2">o2</option>
<option value="o3" id="id3">o3</option>
</select>

python中使用Select类操作下拉选择框,要选导入该类

from selenium.webdriver.support.select import Select
# 现获取select标签的webelement对象
ele = self.driver.find_element(By.ID, 's1Id')
# 再创建操作下拉框的对象
select = Select(ele)
# 通过索引选择下拉选项
# select.select_by_index(1)
# 通过文本内容选择下拉选项
# select.select_by_value('o3')
# 所有选项的webelement对象,返回一个列表
# print(select.options)
# 所有选中的选项的webelement对象,返回一个列表
print(select.all_selected_options)

常用方法/属性

方法/属性 描述
select_by_value() 根据值选择
select_by_index() 根据索引选择
select_by_visible_text 根据文本选择
deselect_by_value 根据值反选
deselect_by_index 根据索引反选
deselect_by_visible_text 根据文本反选
deselect_all 反选所有
options 所有选项的webelement对象
all_selected_options 所有选中的选项的webelement对象
first_selected_option 第一个选择选项

标签:选项,选择,python,反选,selenium,webelement,Select,select
来源: https://www.cnblogs.com/gao-ch/p/16523195.html