gpt4 book ai didi

ios - 如何通过 UI 测试执行 "swipe left"操作

转载 作者:可可西里 更新时间:2023-11-01 05:03:41 29 4
gpt4 key购买 nike

如何通过 Xcode 中的 UI 测试执行“向左滑动”操作来触发 segue 和更改 View Controller ?

记录的代码是

[[[[[[[XCUIApplication alloc] init].otherElements containingType:XCUIElementTypeNavigationBar identifier:@"UIView"] childrenMatchingType:XCUIElementTypeOther].element childrenMatchingType:XCUIElementTypeOther].element childrenMatchingType:XCUIElementTypeOther].element tap];

但它似乎不起作用——据我所知, View Controller 没有更改为新的。

最佳答案

很难准确判断您正尝试滑动哪个 View 。以下代码将在名为“Swipe Me”的标签上执行“向左滑动”手势。定位 View 后,应该很容易遵循相同的技术。

XCUIApplication *app = [XCUIApplication alloc] init];
[app.labels[@"Swipe Me"] swipeLeft];

Read more about swipeLeft以及您可以在元素上执行的伴随手势。如果您正在寻找更通用的“备忘单”,我还有 got you covered .

关于ios - 如何通过 UI 测试执行 "swipe left"操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35673583/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com