Created
August 21, 2018 16:19
-
-
Save tristansokol/2c3aebd02a7a4c97ef1d319f50d7b144 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
const puppeteer = require('puppeteer'); | |
browser = await puppeteer.launch({ | |
headless: true, | |
slowMo: 80, | |
}); | |
page = await browser.newPage(); | |
await page.goto('http://example.com'); | |
await page.waitForSelector('#tickets'); | |
await page.hover('#tickets > div.container > div > div > div > h2:nth-child(5) > button > i') | |
await page.waitFor(2000); //make sure I really want to buy | |
await Promise.all([ | |
page.waitForNavigation({}), | |
page.click('#tickets > div.container > div > div > div > h2:nth-child(5) > button > i', { | |
button: 'left', | |
delay: 200 | |
}) | |
]); | |
await page.click('#tito-tickets-form > div.tito-submit-wrapper > button') | |
await page.waitForSelector('#tito-iframe'); | |
const frame = await page.frames().find(f => f.name() === 'tito-iframe'); | |
await (await frame.$('#registration_name')).type('Taylor', { delay: 100 }); | |
await (await frame.$('#registration_name')).type(' Swift', {}); | |
await (await frame.$('#registration_email')).type('[email protected]') | |
browser.close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment