我正在使用 XCTest 编写相当复杂的 UI 测试,最近改用 EarlGrey,因为它更快且更可靠 - 测试不会在构建服务器上随机失败,并且测试套件可能需要多达一半小时跑!
我在 EarlGrey 中无法做到但我可以在 XCTest 中做到的一件事是随机选择一个元素。
例如,在日历 collectionView
上,我可以使用 NSPredicate
查询所有带有 'identifier' 的 collectionViewCell
,然后随机使用 [XCUIElementQuery count]
选择一天以获取索引,然后点击
。
现在,我将对其进行硬编码,但我希望随机选择日期,这样如果我们更改应用代码,我就不必重写测试。
如果我能详细说明,请告诉我,期待解决这个问题!
第 1 步编写一个匹配器,它可以使用 GREYElementMatcherBlock
计算元素匹配给定匹配器:
- (NSUInteger)elementCountMatchingMatcherid<GREYMatcher>)matcher {
__block NSUInteger count = 0;
GREYElementMatcherBlock *countMatcher = [GREYElementMatcherBlock matcherWithMatchesBlock:^BOOL(id element) {
if ([matcher matches:element]) {
count += 1;
}
return NO; // return NO so EarlGrey continues to search.
} descriptionBlock:^(id<GREYDescription> description) {
// Pass
}];
NSError *unused;
[[EarlGrey selectElementWithMatcher:countMatcher] assertWithMatcher:grey_notNil() error:&unused];
return count;
}
第 2 步使用 %
选择随机索引
NSUInteger randomIndex = arc4random() % count;
第 3 步 最后使用 atIndex:
选择该随机元素并对其执行操作/断言。
// Count all UIView's
NSUInteger count = [self elementCountMatchingMatcher:grey_kindOfClass([UIView class])];
// Find a random index.
NSUInteger randIndex = arc4random() % count;
// Tap the random UIView
[[[EarlGrey selectElementWithMatcher:grey_kindOfClass([UIView class])]
atIndex:randIndex]
performAction:grey_tap()];
关于ios - 在 EarlGrey 中随机选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41863692/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |