selenium——下拉框

Posted erchun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium——下拉框相关的知识,希望对你有一定的参考价值。

 

select_ele = driver.find_element_by_xpath("//select[@name=‘gpc‘]")
select = Select(select_ele)
time.sleep(1)
# 方式一:通过索引进行选择
select.select_by_index(3)
# 方式二:通过文本进行选择
select.select_by_visible_text(最近一年)
# 方式三:通过value进行选择
s2 = Select(driver.find_element_by_xpath("//select[@name=‘ft‘]"))
s2.select_by_value(doc)

 

以上是关于selenium——下拉框的主要内容,如果未能解决你的问题,请参考以下文章

selenium Select下拉框

selenium-Python之定位下拉框选择

selenium-Python之定位下拉框选择

selenium 怎么操作下拉框

Selenium WebDriver 和下拉框

selenium webdriver下拉框的处理方式