我使用的是无头镀铬包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模板:
您可能会发现http://node.green/有用。 –