我是watir测试的新手。有人会帮我找到以下元素。
<div class="location_picker_type_level" data-loc-type="1">
<table></table>
</div>
我想找到这个div
,data-loc-type
存在table
。
browser.elements(:xpath,"//div[@class='location_picker_type_section[data-loc-type='1']' table ]").exists?
答案 0 :(得分:13)
Watir支持使用data-
类型属性作为定位器(即不需要使用xpath)。只需用下划线替换破折号,并在开头添加冒号。
您可以使用以下内容获取div(请注意属性定位器的格式:data-loc-type - &gt;:data_loc_type):
browser.div(:class => 'location_picker_type_level', :data_loc_type => '1')
如果只期望有一个这种类型的div,你可以通过这样做检查它是否有一个表:
div = browser.div(:class => 'location_picker_type_level', :data_loc_type => '1')
puts div.table.exists?
#=> true
如果有多个匹配的div,并且您想检查其中至少有一个是否包含该表,请使用any?
方法获取divs
集合:
#Get a collection of all div tags matching the criteria
divs = browser.divs(:class => 'location_picker_type_level', :data_loc_type => '1')
#Check if the table exists in any of the divs
puts divs.any?{ |d| d.table.exists? }
#=> true
#Or if you want to get the div that contains the table, use 'find'
div = divs.find{ |d| d.table.exists? }