如何在node.js中的异步函数内使用for循环?

时间:2019-09-02 20:10:09

标签: javascript node.js loops async-await puppeteer

我正在尝试使用一堆ID登录网页。

我已经使用单个id创建了代码,并且我的代码正在运行,但是我对如何在async函数中引入循环感到惊讶。

const puppeteer = require('puppeteer');

let scrape = async () => {
    const browser = await puppeteer.launch();
    const page = await browser.newPage();
    await page.goto('URL');
    const id=[IDs];

    for(const i of id)
    {
        await page.$eval('#username', el => el.value = i);
        await page.$eval('#password', el => el.value = 'PASSWORD');
        await page.click('#loginbutton');
        await page.waitFor(1000);
        const result = await page.evaluate(() => {
        let a=document.getElementById('signin-caption').innerText;
        let b=document.getElementById('statusmessage').innerText;
        if(b)
            return b;
        return a;
        });
        await console.log(result);
        if(result.startsWith('You'))
            break;
    }
    await browser.close();
    return result;
 };

scrape().then((value) => {
    console.log(value);
});

出现以下错误: “ UnhandledPromiseRejectionWarning:错误:评估失败:ReferenceError:我未定义”

1 个答案:

答案 0 :(得分:0)

await page.$eval('#username', (el , i ) => el.value = i , i );