I run puppeteer in a lambda, which works fine using https://www.npmjs.com/package/puppeteer-lambda
In my case a user input is needed in between, so I need to stop somehow and wait for user input.
Puppeteer lambda is always headless, so this won't help I guess How can I pause and wait for user input with Puppeteer?
I tested to have page and browser as global variables and having 2 step functions, but without success.