I would like to know if I can tell puppeteer to wait until an element is displayed.
const inputValidate = await page.$(
If you want to ensure the element is actually visible, you have to use
page.waitForSelector('#myId', {visible: true})
Otherwise you are just looking for the element in the DOM and not checking for visibility.