Created
August 20, 2018 21:37
-
-
Save tristansokol/cc034dc3e03402a7adef372e4c2c1c98 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.on('console', msg => {}); | |
page.on('dialog', msg => {}); | |
page.on('error', msg => {}); | |
page.on('frameattached', msg => {}); | |
page.on('framenavigated', msg => {}); | |
page.on('load', msg => {}); //javascript load events | |
page.on('request', msg => {}); | |
page.on('response', msg => {}); | |
page.on('workercreated', msg => {}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment