异步抛出SyntaxError:意外的令牌(

时间:2017-09-06 03:21:10

标签: javascript webpack vue.js ecmascript-2017 puppeteer

我正在使用无头Chrome软件包Puppeteer运行测试:

const puppeteer = require('puppeteer')

;(async() => {
  const browser = await puppeteer.launch()
  const page = await browser.newPage()
  await page.goto('https://google.com', {waitUntil: 'networkidle'})
  // Type our query into the search bar
  await page.type('puppeteer')

  await page.click('input[type="submit"]')

  // Wait for the results to show up
  await page.waitForSelector('h3 a')

  // Extract the results from the page
  const links = await page.evaluate(() => {
    const anchors = Array.from(document.querySelectorAll('h3 a'))
    return anchors.map(anchor => anchor.textContent)
  })
  console.log(links.join('\n'))
  browser.close()
})()

我正在运行脚本:node --harmony test/e2e/puppeteer/index.js(v6.9.1)

但是我收到了这个错误:

;(async() => {
       ^
SyntaxError: Unexpected token (

可能是什么问题?

注意:我正在使用Vue CLI的官方Webpack模板:

2 个答案:

答案 0 :(得分:4)

我发现:节点LTS(AK​​A节点6)现在不支持异步/等待机制。见: enter image description here

详情请见此处:https://www.infoq.com/news/2017/02/node-76-async-await

答案 1 :(得分:1)

我在我的笔记本电脑上尝试了你的代码后,它完美地工作: enter image description here

也许你有环境问题。

你考虑过在行尾开始删除半结肠吗? 它看起来不像正确的编程。或者也许是一个webpack问题。