下拉菜单的选取
Posted JodieWang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下拉菜单的选取相关的知识,希望对你有一定的参考价值。
例如:https://www.baidu.com/
设置-搜索设置:每页显示10条设置为每页显示20条的方法:
1.driver.find_element_by_xpath(".//*[@id=\'nr\']/option[2]").click()
2.Select(driver.find_element_by_id("nr")).select_by_visible_text(u"每页显示20条")
3.Select(driver.find_element_by_id(\'nr\')).select_by_index(1)
4.Select(driver.find_element_by_id(\'nr\')).select_by_value(\'20\')
以上是关于下拉菜单的选取的主要内容,如果未能解决你的问题,请参考以下文章