Caleb St Clair
Results
2
comments of
Caleb St Clair
I have the same issue with a very similar setup except using `Puppeteer.launch` ``` Puppeteer.launch(headless: headless, args: args) do |browser| page = browser.pages.first || browser.new_page # Puppeteer logic rescue =>...
I was able to work around this issue by using a child process (not ideal but it works). I run my puppeteer code in a delayed job process that runs...