Created
February 9, 2022 10:12
-
-
Save SubhadityaMukherjee/d8251f2c50f0cb9fd4ae77560de38bc0 to your computer and use it in GitHub Desktop.
login
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
| sites = sites.replace(" ", "") # Just make sure it works | |
| assert len(sites.split(",")) == len(to_put) | |
| actions = ActionChains(browser) # Syntax for selenium to send a bunch of keypresses | |
| browser.get('https://github.com/login') | |
| time.sleep(1) | |
| chain_actions(actions, [email, Keys.TAB, passw, Keys.TAB, Keys.ENTER]) | |
| time.sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment