fix(route): xiaohongshu private collection (#12366)

This commit is contained in:
Tony 2023-04-21 11:31:45 -02:00 committed by GitHub
parent 8c0c3d606b
commit f7add90bee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -31,7 +31,10 @@ const getUser = (url, cache) =>
await page.goto(url);
await page.waitForSelector('.feeds-container:nth-child(1) .note-item');
await page.click('div.reds-tab-item:nth-child(2)');
await page.waitForSelector('.feeds-container:nth-child(2) .note-item');
const privateCollection = await page.evaluate(() => document.querySelector('div.reds-tab-item:nth-child(2) .reds-icon'));
if (!privateCollection) {
await page.waitForSelector('.feeds-container:nth-child(2) .note-item');
}
return { otherInfo, user_posted, collect };
} finally {
browser.close();