We recently updated our project to use Xcode 15. We have UI tests that run for each PR. Previously, the report generated from xcresulttool included screenshots. After updating to Xcode 15, the screenshots are no longer present. Here's a screenshot from a recent job:
I have double checked the screenshots are present in the bundle itself running the same command we use to run our UI tests locally (with Fastlane scan - it basically looks like this):
desc "Run UI Tests"
lane :ui_tests do
reset_simulator_contents
run_tests(
clean: true,
cloned_source_packages_path: "SPMCache",
fail_build: false,
project: XCODE_PROJ,
result_bundle: true,
scheme: "UITests"
)
end
When I open the bundle this command generates in Xcode, I can see screenshots:
We recently updated our project to use Xcode 15. We have UI tests that run for each PR. Previously, the report generated from xcresulttool included screenshots. After updating to Xcode 15, the screenshots are no longer present. Here's a screenshot from a recent job:
I have double checked the screenshots are present in the bundle itself running the same command we use to run our UI tests locally (with Fastlane scan - it basically looks like this):
When I open the bundle this command generates in Xcode, I can see screenshots: