• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 有没有办法在 UITest 中使用 valueForKey 和 NSPredicate?

[复制链接]
菜鸟教程小白 发表于 2022-12-13 14:03:18 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我的 iOS UI 测试有以下测试助手函数:

func waitForElementToHaveKeyboardFocus(element: XCUIElement) {
    self.expectationForPredicate(NSPredicate(format:"valueForKey(\"hasKeyboardFocus\") == true"), evaluatedWithObject:element, handler: nil)
    self.waitForExpectationsWithTimeout(5, handler: nil)
}

在我的测试中我有:

let usernameTextField = app.textFields["Username"]
let passwordTextField = app.secureTextFields["assword"]
waitForElementToHaveKeyboardFocus(usernameTextField)

测试失败并出现以下错误:

error: -[ExampleAppUITests.ExampleAppUITests testExampleApp] : failed: caught "NSUnknownKeyException", "[<_NSPredicateUtilities 0x10e554ee8> valueForUndefinedKey:]: this class is not key value coding-compliant for the key hasKeyboardFocus."

如果我在失败时在测试中设置断点并在焦点和非焦点字段上手动调用 valueForKey("hasKeyboardFocus") 我似乎得到了正确的行为:

(lldb) po usernameTextField.valueForKey("hasKeyboardFocus")
    t =    51.99s     Find the "Username" TextField
    t =    51.99s         Use cached accessibility hierarchy for ExampleApp
    t =    52.00s         Find: Descendants matching type TextField
    t =    52.01s         Find: Elements matching predicate '"Username" IN identifiers'
▿ Optional<AnyObject>
  - Some : 1

(lldb) po passwordTextField.valueForKey("hasKeyboardFocus")
    t =   569.99s     Find the "assword" SecureTextField
    t =   569.99s         Use cached accessibility hierarchy for ExampleApp
    t =   570.01s         Find: Descendants matching type SecureTextField
    t =   570.01s         Find: Elements matching predicate '"assword" IN identifiers'
▿ Optional<AnyObject>
  - Some : 0

是否可以使 XCUIElement 上的 valueForKey 在 UI 测试中与 NSPredicate 一起使用?还有另一种优雅的方法吗?



Best Answer-推荐答案


看起来你的谓词有点不对劲。尝试将其更改为以下内容:

NSPredicate(format: "hasKeyboardFocus == true"), evaluatedWithObject:element, handler: nil)

创建谓词时不需要传入valueForKey部分。

关于ios - 有没有办法在 UITest 中使用 valueForKey 和 NSPredicate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39232896/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap