Sha256: 1f6814c5dd4d2ca40a6915a0337f05883dbd01329adba03ccb8e08a3d56e5298
Contents?: true
Size: 693 Bytes
Versions: 25
Compression:
Stored size: 693 Bytes
Contents
// // SkeletonUITests.swift // SkeletonUITests // // Created by a.alterpesotskiy on 12/03/2018. // Copyright © 2018 forqa. All rights reserved. // import XCTest let app = XCUIApplication(bundleIdentifier: ProcessInfo.processInfo.environment["bundle_id"]!) class SkeletonUITests: XCTestCase { func testMe() { app.activate() sleep(1) print("start_grep_tag") print(app.debugDescription) print("end_grep_tag") let screenshot = app.windows.firstMatch.screenshot() let attachment = XCTAttachment(screenshot: screenshot) attachment.lifetime = .keepAlways attachment.name = "skeleton" add(attachment) } }
Version data entries
25 entries across 25 versions & 1 rubygems