Skip to content

Instantly share code, notes, and snippets.

@AndreiVidrasco
Created October 15, 2019 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndreiVidrasco/2621d8f28cd6e5e1ef49ab2723119a04 to your computer and use it in GitHub Desktop.
Save AndreiVidrasco/2621d8f28cd6e5e1ef49ab2723119a04 to your computer and use it in GitHub Desktop.
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()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment