0
下面是我對earlGrey測試代碼導航問題
EarlGrey.select(elementWithMatcher: grey_accessibilityID("userNameTextField"))
.atIndex(0).perform(grey_typeText("[email protected]"))
EarlGrey.select(elementWithMatcher: grey_accessibilityID("passwordTextField"))
.atIndex(1).perform(grey_typeText("[email protected]"))
EarlGrey.select(elementWithMatcher: grey_accessibilityID("signIn")).atIndex(2)
.perform(grey_tap())
/////////////////This button on the other view controller i redirect after login////////////////////////////////
EarlGrey.select(elementWithMatcher: grey_accessibilityID("menuButton"))
.perform(grey_tap())
視圖層次不顯示我的導航view.How可以用我伯爵茶UI在迅速
您是否能夠在層次結構中看到它?使用'[GREYElementHierarchy hierarchyStringForAllUIWindows];' –
否視圖層次結構中,我能夠看到當前視圖沒有導航一個 –
我不能完全理解你的問題。你是說最後一行你點擊menuButton失敗,因爲它找不到按鈕?你能附上失敗日誌嗎? – khandpur