How do I automate form submission with Puppeteer when no submit button exists? For instance:
const agent = await require('puppeteer').launch();
const tab = await agent.newPage();
await tab.goto('https://example.com');
await tab.keyboard.press('Enter');
await agent.close();