Last active
January 9, 2022 02:04
-
-
Save rafaelgallani/fdb53b05abc19eade6b8e2fd0edf694b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 pyautogui | |
| import time | |
| def click(x, y): | |
| pyautogui.moveTo(x,y) | |
| pyautogui.click() | |
| time.sleep(1) | |
| time.sleep(3) | |
| pyautogui.hotkey('shift', 'alt', 'm') | |
| time.sleep(10) | |
| pyautogui.press('enter') | |
| time.sleep(5) | |
| pyautogui.press('esc') | |
| time.sleep(1) | |
| pyautogui.hotkey('ctrl', 'l') | |
| time.sleep(1) | |
| pyautogui.write('app.bombcrypto.io') | |
| pyautogui.press('enter') | |
| time.sleep(10) | |
| click(968, 629) | |
| time.sleep(5) | |
| click(1843, 602) | |
| time.sleep(2) | |
| click(1843, 602) | |
| time.sleep(5) | |
| pyautogui.hotkey('alt', 'f4') | |
| time.sleep(1) | |
| pyautogui.hotkey('alt', 'f4') | |
| time.sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment