码迷,mamicode.com
首页 > 编程语言 > 详细

Selenium+python --定位下拉列表框并选取内容

时间:2019-04-04 12:37:10      阅读:1356      评论:0      收藏:0      [点我收藏+]

标签:cti   https   pytho   定位   action   cli   span   --   模块   

follow yoyo

技术图片

定位下拉列表并选取内容

# coding:utf-8
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium .webdriver.support.select import Select

driver = webdriver.Firefox()
driver.get("https://baidu.com")
driver.implicitly_wait(20)

# 鼠标移动到设置按钮
mouse = driver.find_element_by_link_text("设置")
ActionChains(driver).move_to_element(mouse).perform()
driver.find_element_by_link_text("搜索设置").click()

# 方法一:定位到下拉框,再点击选项
# s = driver.find_element_by_id("nr")
# s.find_element_by_xpath("//option[@value=‘50‘]").click()
driver.find_element_by_id("nr").find_elements_by_xpath("//option[@value=‘50‘]").clear()

# 方法二:使用xpath/css定位
driver.find_elements_by_xpath("//*[@id=‘nr‘]/option[2]").click()

# 方法三:使用Select模块by index
s = driver.find_element_by_id("nr")
Select(s).select_by_index(2)

# select by value
Select(s).select_by_value("20")

# select by text
Select(s).select_by_visible_text("每页显示20条")


 

Selenium+python --定位下拉列表框并选取内容

标签:cti   https   pytho   定位   action   cli   span   --   模块   

原文地址:https://www.cnblogs.com/shanliguniang/p/10654030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!