我正在尝试使用Puppeteer Js解析和自动执行某些操作。在我的本地主机上运行正常,但是在Google App Engine上部署它时却给出了超时错误
这是我的代码:
puppeteer.launch({
headless: true,
timeout: 90000,
args: ['--no-sandbox', '--disable-setuid-sandbox']
}).then(function(browser) {
cprint('coming here 1 ' + count, 1)
browser.newPage().then(function(page) {
cprint('coming here 2', 1)
page.setExtraHTTPHeaders({
'Accept-Language': 'en-GB,en-US;q=0.9,en;q=0.8'
}).then(function() {
page.goto('https://some-site.aspx', {
timeout: 60000
}).then(function() {
--some code-- -
})
})
})
})