标签: android calabash
我有多个具有Arg1值的字段。如何选择最后一个索引的元素?这将选择具有arg1值的第一个索引。
tap_when_element_exists("* text:'#{arg1}'")
答案 0 :(得分:0)
您可以执行查询以获取所有内容,然后选择最后一个。 获得所有
res = query "* text:'#{argh1}'"
然后触摸你可以做的最后一个
touch res[-1]