Last active
March 2, 2019 08:11
-
-
Save entrptaher/14f3707acbdd22a0cd01600453c1d0a6 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
class LoginExample { | |
// launches our browser | |
async initBrowser() {} | |
// creates a new tab | |
async initPage() {} | |
// if we give cookie, it uses that | |
async setCookie() {} | |
// if we give login data, it fills the form with that | |
async fillForm() {} | |
// we want to click the login button once we fillup form, right? | |
async clickLoginBtn() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment