Last active
January 9, 2022 01:38
-
-
Save rafaelgallani/d1d5eec4fe0475c3aedd9c0f5921d2a3 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 | |
| time.sleep(3) | |
| pyautogui.hotkey('alt', 'shift', 'm') | |
| time.sleep(10) | |
| pyautogui.press('tab') | |
| pyautogui.press('enter') | |
| time.sleep(1) | |
| pyautogui.press('tab') | |
| pyautogui.press('tab') | |
| pyautogui.press('tab') | |
| pyautogui.press('tab') | |
| pyautogui.press('enter') | |
| time.sleep(1) | |
| pyautogui.write('Binance Smart Chain', interval=0.1) | |
| pyautogui.press('tab') | |
| pyautogui.write('https://bsc-dataseed.binance.org', interval=0.1) | |
| time.sleep(3) | |
| pyautogui.press('tab') | |
| pyautogui.press('tab') | |
| pyautogui.write('56', interval=0.1) | |
| pyautogui.press('tab') | |
| pyautogui.write('BNB', interval=0.1) | |
| pyautogui.press('tab') | |
| pyautogui.write('https://bscscan.com', interval=0.1) | |
| pyautogui.press('tab') | |
| pyautogui.press('tab') | |
| pyautogui.press('enter') | |
| time.sleep(3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment