Sha256: 92c8cc126e6f6ebfabb4211a9ec0b5aa0abc6641ad6701ca3c9875cd09d12721
Contents?: true
Size: 703 Bytes
Versions: 5
Compression:
Stored size: 703 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
5 entries across 5 versions & 1 rubygems