当在GAE上部署时,操纵up的goto()在aspx页面上给出超时

时间:2018-07-28 11:25:23

标签: asp.net node.js google-app-engine puppeteer

我正在尝试使用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-- -
        })
    })
  })
})          

0 个答案:

没有答案