I use fastlane to wrap my XCUITests, but got from fastlane only some log:
[18:04:56]: ▸ All tests
[18:04:56]: ▸ Test Suite GUITests.xctest started
[18:04:56]: ▸ GT01FirstLaunchUITest
[18:05:11]: ▸ ✓ testFirstLaunch (15.405 seconds)
[18:07:59]: ▸ GT06CreateRequestUITest
[18:08:30]: ▸ ✓ test01LaunchAuth (30.513 seconds)
[18:09:35]: ▸ ✓ test02CreateRequestCheckAll (65.524 seconds)
But I want get more verbose log: For example as:
▸ GT01FirstLaunchUITest
▸ ✓ testFirstLaunch (15.405 seconds)
- onboarding are exists
- check is right
- and so on
I know about Xcode standard log for ui-tests: /Users/user/Library/Developer/Xcode/DerivedData/GG-atkebwuxkjajqjcjvgrduoiajkoi/Logs/Test/Run-GGUITests-2019.07.22_18-22-40-+0300.xcresult
Its very useful but more for debug not for use in CI
- How I can do this?
- How I can output smth to fastlane log?
- What are needed add to my XCUITests on swift for any print additional info to fastlane ?
Thanks anyway