我有两页。在第一页上,我单击'#btnSearch'
,然后在第二页上加载几个JSON文件作为响应。我需要将这些JSON文件的数据收集到数组results
中。
我的问题是results
是空。
await page.goto(url, { waitUntil: 'load');
await page.click('#btnSearch');
const results = [];
await page.on('response', async (response) => {
if (response.url() && response.status() == 200) {
console.log('XHR response received');
results.push(await response.json());
}
});
//await page.goto(url, {waitUntil : 'networkidle0'});
await page.waitForSelector('#statusInfo');
console.log(results);
答案 0 :(得分:0)
page.on
事件侦听器应在发出需要捕获的网络请求之前声明。
我不确定您的目标站点如何工作,因此我可能会做出错误的猜测,但是如果我们尝试以这种方式更改代码怎么办:
const results = [];
// Open the first page
await page.goto(url, { waitUntil: 'load');
// Register an event listener
await page.on('response', async (response) => {
if (response.url() && response.status() == 200) {
console.log('XHR response received');
results.push(await response.json());
}
});
// Trigger navigation to the second page
await page.click('#btnSearch');
// wait until the navigation is finished
await page.waitForNavigation(); // <-- remove the line if script errors with timeout
await page.waitForSelector('#statusInfo');
console.log(results);