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
let stubApp = XCUIApplication() | |
stubApp.launch() | |
let app = XCUIApplication(bundleIdentifier: "com.cardify.tinder") | |
app.activate() | |
sleep(3) | |
let button = app.buttons["game_like_button"] | |
while true { | |
button.tap() | |
} |