如果应用是第一次安装,需要允许通知,如何确认?有人遇到吗?
问问题
332 次
1 回答
2
您通常应该模拟通知和其他数据请求,以防止出现对话框。您也可以手动接受通知并重新运行测试。我们为此尝试使用私有 UIAutomation 框架,并看到我们可以用它来实现这一点。例如,用于按下左侧警报按钮。
@interface SystemAlert : NSObject
- (void)tapLeftButton;
@end
@interface SystemAlert (ForMethodCompletionOnly)
+ (id)localTarget;
- (id)frontMostApp;
- (id)alert;
- (id)buttons;
@end
@implementation SystemAlert
+ (void)load {
dlopen([@"/Developer/Library/PrivateFrameworks/UIAutomation.framework/UIAutomation" fileSystemRepresentation], RTLD_LOCAL);
}
- (void)tapLeftButton {
id localTarget = [NSClassFromString(@"UIATarget") localTarget];
id app = [localTarget frontMostApp];
id alert = [app alert];
id button = [[alert buttons] objectAtIndex:0];
[button tap];
}
@end
于 2016-03-24T19:00:36.510 回答