我正在使用 EarlGrey 框架,但不确定使用可访问性 ID 时从 UI 标签/文本字段中捕获文本值的方法。
问问题
378 次
1 回答
0
你可以grey_accessibilityID("")
像这样使用:
class MyFirstEarlGreyTest: XCTestCase {
func testExample() {
EarlGrey
.select(elementWithMatcher: grey_accessibilityID("phone_number_text_field"))
.assert(grey_sufficientlyVisible())
.perform(grey_replaceText("1234"))
}
}
我希望这有帮助!
于 2019-01-16T10:35:36.243 回答