gpt4 book ai didi

ios - 如何将 iOS UIAutomation 测试的输出转换为 Jenkins 的 JUnit 样式输出?

转载 作者:技术小花猫 更新时间:2023-10-29 11:24:00 27 4
gpt4 key购买 nike

我正在使用 UIAutomation 脚本来测试我的 iOS 应用程序。我已经设法让脚本从命令行运行,但现在我需要将输出(通过/失败)转换为 Jenkins 可以理解的格式,最好是 JUnit 风格。

在我尝试编写脚本之前,有没有人编写过任何脚本来执行此操作?

非常感谢

最佳答案

也许你可以看看:https://github.com/shaune/jasmine-ios-acceptance-tests

编辑:我也避免使用 Jasmine 。要“监听”开始、通过和失败测试,​​我只是替换了 UIALogger.logStartUIALogger.logFailUIALogger.logPass :

(function () {
// An anonymous function wrapper helps you keep oldSomeFunction private
var oldSomeFunction = UIALogger.logStart;
UIALogger.logStart = function () {
//UIALogger.logDebug("intercepted a logStart : " + arguments);
OKJunitLogger.reportTestSuiteStarting(arguments[0]);
oldSomeFunction.apply(this, arguments);
}
})();

关于ios - 如何将 iOS UIAutomation 测试的输出转换为 Jenkins 的 JUnit 样式输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8764956/

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