Scenario: Web form for developer app registration with two part workflow. Page 1: Fill out developer app details and click on button to create Application ID, which opens, in a new tab… Page 2: The App ID page. I need to copy ...
Discy Latest Questions
Using puppeteer, how could you programmatically submit a form? So far I’ve been able to do this using page.click('.input[type="submit"]') if the form actually includes a submit input. But for forms that don’t include a submit input, focusing on ...
I am in a situation where new content is created when i scroll down. The new content has a specific class name. How can i keep scrolling down until all the elements have loaded? In other words, i want to reach ...
I would like to know if I can tell puppeteer to wait until an element is displayed. const inputValidate = await page.$('input[value=validate]'); await inputValidate.click() // I want to do something like that waitElemenentVisble('.btnNext ...
In puppeteer I would like to wait a defined time before going to the next line of code. I’ve tried to put a setTimeout in an evaluate function but it seems to be simply ignored console.log('before waiting'); await page.evaluate(async() => { setTimeout(function(){ ...