Created
September 24, 2019 06:27
-
-
Save mpahuja/3dfe7d7132d4b33e8734e8919165dc39 to your computer and use it in GitHub Desktop.
Pages - BasePage.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XCTest | |
open class BasePage { | |
public let app: XCUIApplication | |
public required init(testCase: BaseTest) { | |
self.app = testCase.globalSampleApp | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment