Pressing enter in puppeteer doesn\'t seem to have any effect. However, when I press other keys, it does what it should. This works:
await page.press(\'Arrow
I've used page.keyboard.press('Enter'); usually :) Works for me.
page.keyboard.press('Enter');
Have a look at the documentation here. I think you should use .keyboard before .press for it to work properly.
.keyboard
.press