Skip to content

Instantly share code, notes, and snippets.

@rafaelgallani
Last active January 9, 2022 02:04
Show Gist options
  • Select an option

  • Save rafaelgallani/fdb53b05abc19eade6b8e2fd0edf694b to your computer and use it in GitHub Desktop.

Select an option

Save rafaelgallani/fdb53b05abc19eade6b8e2fd0edf694b to your computer and use it in GitHub Desktop.
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