не сохраняются айдишники страниц в текстовый файл, вот код:
const puppeteer = require('puppeteer');
const fs = require('fs');
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
const ids = [];
for (id = 184; id < 200; id++) {
await page.goto('https://apphx.pscu.com/AP/APCardholder/pages/dsologin?clientId=' + id + '&siteFlag=true');
if (document.title === "Login") {
ids.push(document.title);
}
}
ids.forEach(id => fs.writeFile('ids.txt', id));
await browser.close();
})();
ты в ids document.title пушишь, а не id
Обсуждают сегодня