如何使用EarlGrey中的辅助功能ID从UI标签/文本字段捕获文本值?

时间:2019-01-16 10:27:41

标签: ios swift xcuitest earlgrey

我使用的是EarlGrey框架,但不确定使用可访问性ID时将是从UI标签/文本字段捕获文本值的方法。

1 个答案:

答案 0 :(得分:0)

您可以像这样使用grey_accessibilityID("")

class MyFirstEarlGreyTest: XCTestCase {

  func testExample() {

    EarlGrey
      .select(elementWithMatcher: grey_accessibilityID("phone_number_text_field"))
      .assert(grey_sufficientlyVisible())
      .perform(grey_replaceText("1234"))
  }
}

我希望这会有所帮助!