0

如何使用 REPL 列出 TableView 中的元素?我需要所有带有 class 的元素UIAccessibilityElementMockView。这些是树命令后可见的元素: Xamarin_Tree

我已经尝试过以下命令:

app.Query(x=>x.Class("UITableView").Child())
app.Query(x=>x.Class("UITableView").Child("UITableViewCell"))

任何帮助将不胜感激。

4

2 回答 2

1

经过一段时间的调查,我设法解决了这个问题:

app.Query(x => x.Class("UITableViewCell").Descendant("UIBUttonLabel"))

此查询返回我需要的所有实体的列表。

于 2017-02-21T10:34:18.210 回答
0

你试过app.Query(c => c.Marked("UIAccessibilityElementMockView"))吗?

https://developer.xamarin.com/api/member/Xamarin.UITest.Queries.AppQuery.Marked/

你能发布一个示例应用程序吗?

于 2017-02-07T17:42:03.253 回答