ios-ui-automation – target.frontMostApp().键盘()无法找到键’N’

ios-ui-automation – target.frontMostApp().键盘()无法找到键’N’,第1张

概述我正在尝试使用UI Automation自动键盘输入. target.frontMostApp().keyboard().typeString("INTERCOM") 但是在输入“I”后我会收到此错误 target.frontMostApp().keyboard() failed to locate key 'N'Script threw an uncaught JavaScript error 我正在尝试使用UI automation自动键盘输入.

target.frontMostApp().keyboard().typestring("INTERCOM")

但是在输入“I”后我会收到此错误

target.frontMostApp().keyboard() Failed to locate key 'N'Script threw an uncaught JavaScript error: target.frontMostApp().keyboard() Failed to locate key 'N'

我有一个本地化的瑞典键盘.

任何人都知道这是一个我错过的错误吗?

解决方法 这可能有所帮助:

var vKeyboard = target.frontMostApp().keyboard();vKeyboard.setInterKeyDelay(0.1);vKeyboard.typestring("INTERCOM");

默认情况下,此延迟设置为0.03秒.这不足以让您的应用程序更新键盘上的按键.在确定typestring键盘方法的键之间增加此超时将对您有所帮助. UIAKeyboard参考页面上没有setInterKeyDelay的描述,但此方法可用于UIAKeyboard.我也不确定其他语言.我不知道typestring是否允许在其他语言上键入,但这100%适用于iOS 5.x的英文键盘.

总结

以上是内存溢出为你收集整理的ios-ui-automation – target.frontMostApp().键盘()无法找到键’N’全部内容,希望文章能够帮你解决ios-ui-automation – target.frontMostApp().键盘()无法找到键’N’所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1034794.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存