Created
August 20, 2018 22:02
-
-
Save tristansokol/28553eff90281e7f67a74cf0006bf948 to your computer and use it in GitHub Desktop.
This file contains 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
page.type('#name','Sammy',{ | |
delay: 50//how long to wait between keystrokes | |
}) | |
page.keyboard.type('Hello World!'); | |
page.keyboard.press('ArrowLeft'); | |
await page.keyboard.down('Shift'); | |
await page.keyboard.up('Shift'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment