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

find_element和find_elements

时间:2018-05-11 20:32:45      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:element   list   erro   att   表达方式   attr   pyc   pre   因此   

find_element,返回1个对象

find_elements,返回一个列表,里面包含多个对象

因此当你想对一个对象进行操作时,不能使用find_elements的表达方式,pychram会提示你:list没有click属性(AttributeError: ‘list‘ object has no attribute ‘click‘)

正确使用如下:

browser.find_element_by_xpath(‘//*[@id="headIDlistTable"]/th[1]/div/input‘).click()

find_element和find_elements

标签:element   list   erro   att   表达方式   attr   pyc   pre   因此   

原文地址:https://www.cnblogs.com/zjn-20161215/p/9025940.html

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