UI Testing Failure - Neither element nor any descendant has keyboard focus on secureTextField

后端 未结 24 1473
难免孤独
难免孤独 2020-12-12 10:41

This is my case:

let passwordSecureTextField = app.secureTextFields[\"password\"]
passwordSecureTextField.tap()
passwordSecureTextField.typeText(\"wrong_pass         


        
24条回答
  •  醉梦人生
    2020-12-12 11:06

    This maybe help: I just add a "tap" action before the error; that´s all :)

    [app.textFields[@"theTitle"] tap];
    [app.textFields[@"theTitle"] typeText:@"kk"];
    

提交回复
热议问题