码迷,mamicode.com
首页 > 其他好文 > 详细

4. 定位一组对象

时间:2014-07-19 00:22:25      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:使用   strong   art   io   for   re   

如果需要定位一组对象,需要使用以下方法,会返回一个list

      • find_elements_by_name
      • find_elements_by_xpath
      • find_elements_by_link_text
      • find_elements_by_partial_link_text
      • find_elements_by_tag_name
      • find_elements_by_class_name
      • find_elements_by_css_selector

         

element = driver.find_element_by_xpath("//select[@name=‘name‘]")
all_options = element.find_elements_by_tag_name("option")
for option in all_options:
    print("Value is: %s" % option.get_attribute("value"))
    option.click()

4. 定位一组对象,布布扣,bubuko.com

4. 定位一组对象

标签:使用   strong   art   io   for   re   

原文地址:http://www.cnblogs.com/hugh007/p/3853595.html

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