iOS10 上的 TestFairy NSLogs for Cordova

TestFairy NSLogs on iOS10 for Cordova

我是测试仙女的新手,并寻求支持,但我没有收到他们的消息,所以在这里尝试。

问题是我无法在 iOS 应用程序的会话中看到原始日志 window 但我可以在 android 或 [=29= 中看到它] iPhone 模拟器上的应用程序。

我按照信中的说明将应用程序导出为 adhoc ecc...

这是 api 文档。 https://docs.testfairy.com/FAQ.html

哦,我还应该提到我有一个 cordova/ionic 应用程序。

提前致谢。

好的,感谢 TestFairy 的大力支持,尤其是@VijaySharma,这是为有需要的人提供的解决方案。

在平台 > iOS > MyApp > MyApp-Prefix.pch

中找到 .pch header 文件

在 header 添加以下内容。

#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "TestFairy.h"
#define NSLog(s, ...) do { NSLog(s, ##__VA_ARGS__); TFLog(s, ##__VA_ARGS__); } while (0)
#endif

保存文件并重建应用程序。

此外,如果您想显示所有日志,请确保您有此插件:https://github.com/apache/cordova-plugin-console

一切就绪!