javascript - 错误 : Evaluation Failed: ReferenceError: util is not defined

标签 javascript node.js puppeteer

我试图将 util 模块对象传递给 puppeteer page.evaluate 但没有成功。我知道这个问题是在 How to pass required module object to puppeteer page.evaluate 中提出的但提供的解决方案不适用于我的情况。 MWE:

const puppeteer = require("puppeteer");

const path = "http://books.toscrape.com/";

// scrape funs 
(async () =>{
    const browser = await puppeteer.launch({headless: false});
    const page = await browser.newPage();
    await page.goto(path, {waitUntil: "networkidle2", timeout: 0});
    await page.waitFor(1000);
    await page.addScriptTag({path: './node_modules/util/util.js'});
    // selector with replaceable element
    const buttonText = await page.evaluate(() => {
        let selectorButton = "#default > div > div > div > div > section > div:nth-child(2) > ol > li:nth-child(%s) > article > div.product_price > form > button";
        let buttons = [];
        for(let i = 1; i < 21; i ++){
            let textOut = document.querySelector(util.format(selectorButton, i)).innerText;
            buttons.push(textOut);
        };
        return buttons;  
    });

// return
await browse.close();
console.log(buttonText);
})();

显示错误:

UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Evaluation failed: ReferenceError: util is not defined

谢谢

编辑 1

在初始行中添加 const util = require("util"); 并且不起作用,如 How to pass required module object to puppeteer page.evaluate 所示.

编辑 2

即使我使用 browserify,我似乎也无法将 util 模块注入(inject) puppeteer 页面。步骤:

在项目 PATH 中,创建 main.js 如下: var util = require('util');

然后在终端的 PATH 上:browserify main.js -o bundle.js。文件 bundle.js 出现在项目 PATH 中。

然后运行以下命令:

const puppeteer = require("puppeteer");
const path = "http://books.toscrape.com/";

// scrape funs 
(async () =>{
    const browser = await puppeteer.launch({headless: false});
    const page = await browser.newPage();
    await page.goto(path, {waitUntil: "networkidle2", timeout: 0});
    await page.waitFor(1000);
    await page.addScriptTag({path: "main.js"});
    await page.addScriptTag({path: "bundle.js"});
    // selector with replaceable element
    const buttonText = await page.evaluate(() => {
        let buttons = [];
        let selectorButton = "#default > div > div > div > div > section > div:nth-child(2) > ol > li:nth-child(%s) > article > div.product_price > form > button";
        for(let i = 1; i < 21; i ++){
            let textOut = document.querySelector(util.format(selectorButton, i)).innerText;
            buttons.push(textOut);
        };
        return buttons;  
    });

// return
await browse.close();
console.log(buttonText);
})();

错误:

UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Evaluation failed: TypeError: Cannot read property 'format' of undefined at :5:55

最佳答案

您需要包含 ./node_modules/util/util.js 的浏览器兼容版本。您可以使用 browserify 或使用他们的在线服务 Browserify Wizard - util下载浏览器版本。

https://try-puppeteer.appspot.com/ 上的代码

const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto("http://books.toscrape.com/", {waitUntil: "networkidle2", timeout: 0});
await page.waitFor(1000);

//Copy of https://wzrd.in/standalone/util@latest
await page.addScriptTag({url: "https://cdn.rawgit.com/brahma-dev/099d0d6d43a5d013603bcd245ee7a862/raw/b0c6bb82905b5b868c287392000dc2487c41994d/util.js"});

// selector with replaceable element
const buttonText = await page.evaluate(() => {
    let buttons = [];
    let selectorButton = "#default > div > div > div > div > section > div:nth-child(2) > ol > li:nth-child(%s) > article > div.product_price > form > button";
    for(let i = 1; i < 21; i ++){
        let textOut = document.querySelector(util.format(selectorButton, i)).innerText;
        buttons.push(textOut);
    };
    return buttons;  
});

// return
await browser.close();
console.log(buttonText);

关于javascript - 错误 : Evaluation Failed: ReferenceError: util is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49429488/

相关文章:

javascript - Puppeteer 集群示例抛出错误 : Unable to get browser page

javascript - 读取从 NewCookie() 创建的 cookie

javascript - Socket.io 在生产环境中不起作用

javascript - 多次执行函数按顺序替换部分参数

mysql - Sequelize 查询,使用提供的值和表行值实现计算

javascript - 强制 javascript 变量作为 "value"传递

javascript - 响应 header 中不包含“Set-Cookie”

javascript - 如何使用 puppeteer 设置 DOM 元素的值?

javascript - AngularJS 绑定(bind)似乎不起作用

javascript - ng-repeat limitTo 可以应用于在 json 而不是数组上重复吗?