Skip to content

Instantly share code, notes, and snippets.

View AndreiVidrasco's full-sized avatar

Andrei Vidrasco AndreiVidrasco

View GitHub Profile
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()
}