用 python,查找 clickable 为 true 的 image,找到的结果却是所有 image,包含 false 的
el = driver.find_elements_by_xpath("//image[@clickable=true]")
for i in el:
i.get_attribute('clickable')
'true'
'false'
'true'
'true'
'true'
'true'
'true'
'true'
'true'
看到http://testerhome.com/topics/525 里用 ruby 也是类似这样查找的,是 python 的问题吗?
true 加上引号也不行
el = driver.find_elements_by_xpath("//image[@clickable='true']")