Chromeless - 从网页获取所有图像 src

Chromeless - get all images src from a webpage

我正在尝试使用 Chromeless 获取 HTML 页面中所有 img 标签的 src 值。我当前的实现是这样的:

async function run() {
    const chromeless = new Chromeless();
    let url = 'http://someurl/somepath.html';

    var allImgUrls = await chromeless
        .goto(url)
        .evaluate(() => document.getElementsByTagName('img'));

    var htmlContent = await chromeless
        .goto(url)
        .evaluate(() => document.documentElement.outerHTML );

    console.log(allImgUrls);

    await chromeless.end()
}

问题是,我没有在 allImgUrls 中获得 img 对象的任何值。

经过一些研究,发现我们可以使用这种方法:

var imgSrcs = await chromeless
        .goto(url)
        .evaluate(() => {
            /// since document.querySelectorAll doesn't actually return an array but a Nodelist (similar to array)
            /// we call the map function from Array.prototype which is equivalent to [].map.call()
            const srcs = [].map.call(document.querySelectorAll('img'), img => img.src);
            return JSON.stringify(srcs);
        });