Calabash Android:是否可以在`query`中使用通配符?

时间:2014-06-18 19:18:56

标签: android cucumber automated-tests android-testing calabash

有没有办法使用通配符,例如在Calabash中* query

e.g。 query("TextView text:'My name is' * ")

1 个答案:

答案 0 :(得分:2)

您可以使用LIKE根据Xamarin docs

执行通配符搜索
e.g., "label {text LIKE 'C*ll'}"

您也可以使用CONTAINS例如

  query("TextView {text CONTAINS '(sn'}")

ENDSWITHBEGINSWITH

   query("TextView {text BEGINSWITH 'R'}")