Chinaunix首页 | 论坛 | 博客
  • 博客访问: 198039
  • 博文数量: 99
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1045
  • 用 户 组: 普通用户
  • 注册时间: 2014-07-15 14:24
文章分类
文章存档

2015年(9)

2014年(90)

我的朋友

分类: Web开发

2015-01-29 17:50:27

有以下几种方法可用:
(以py脚本为例,其他语言类似。)


1.
driver.find_element_by_id("id =aaa").find_elements_by_tag_name("option")[1].click();
2.
select=driver.find_element_by_xpath("//select[@id='ShippingMethod']")
select.find_element_by_xpath("//option[@value='8.34']").click()


3.
from selenium.webdriver.support.ui import Select 


select = Select(driver.find_element_by_tag_name("select")) 
select.deselect_all() 
select.select_by_visible_text("Edam")
阅读(831) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~