我正在使用Calabash-Ui-Test,我在Android上使用react-native,
我想编写一个使用ID定位我的视图的方案,因此我为组件添加testID
。
所以在我的场景中,我使用了:
Given I wait for the view with id "NoResourceEntry-47" to appear
当我在自己的组件中添加testID
道具时,我想编写如下内容:
Given I wait for the view with id "My-testID" to appear
但是当我运行查询功能:query('*')
时,它不起作用,我发现testID
被tag
替换,结果如下:
"id" => "NoResourceEntry-47",
"enabled" => true,
"contentDescription" => nil,
"visible" => true,
**"tag" => "overview_Button",**
任何使用标签或将标签替换为id的解决方案?
谢谢