Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿,我需要单击此页面中的每个注册者 (keep) 按钮,但我找不到它的选择器
您无法抓取chrome://网址,并且“保留”是 chrome 的一项安全功能。所以自动化也是不可能的。
如果这是puppeteer,可以尝试正常允许下载,
await page._client.send('Page.setDownloadBehavior', { behavior: 'allow', downloadPath: '/path/to/some/directory', });