我遇到了’Textview’类型字段的问题.我无法在
FeedbackTextView字段中输入文本.
let FeedbackTextView = app.staticTexts["Feedback Textview"]
FeedbackTextView.tap()
FeedbackTextView.typeText("This is test Feedback")
执行上述代码时会显示以下错误.
UI Testing Failure – Neither element nor any descendant has keyboard
focus. Element:
我在Xcode 7.0.1中遇到了同样的问题,并且能够通过在模拟器设置中
关闭连接的硬件
键盘来
解决它.硬件 – >
键盘 – >连接硬件
键盘(取消选中此项).在给定视图中的多个TextField上
调用tap()时,硬件
键盘导致问题.已报告此
错误,希望它将在以后的版本中得到
解决.
原文链接:https://www.f2er.com/swift/320021.html