如何将Xcode(swift)的屏幕截图附加到“魅力”报告?
我在测试用例的正文中使用此代码进行屏幕截图
XCTContext.runActivity(named: "TestRunActivity") { (activity) in
let screen = XCUIScreen.main
let fullscreenshot = screen.screenshot()
let fullScreenshotAttachment = XCTAttachment(screenshot: fullscreenshot)
fullScreenshotAttachment.name = startWord + name
fullScreenshotAttachment.lifetime = .keepAlways
activity.add(fullScreenshotAttachment)
}
我看到了一些示例,该示例如何在Java上实现,但是我需要迅速完成。
屏幕快照存储在.xcresult目录中,但不附加到“魅力”报告中。 我怎么能得到这个结果? 谢谢