// // // Created by XCFit Framework // Copyright © 2016 XCFit Framework. All rights reserved. // // /* This is sample code created by XCFit Framework and can be edited/Removed as per your project need. You can also re-arrange Xcode Groups and directories as per your need. This is sample test which demonstrate use of Page Objects and common extensions. We can access any page or section from test method */ import Foundation import XCTest class HomeScreenTest: HomeScreen { func testHomeScreen() { // Below step will be available as part of XCFit Swift Framework. givenILaunchedApplication() whenITap(on: HomeScreen().clickButtuon) } }