type
status
date
slug
summary
tags
category
icon
password
结论
使用 Page.captureScreenshot 截长图时,部分网页只能截当前可视窗口,无法将所有内容截全,究其原因是因为 外层元素css样式 [ height: 100% | height: 100dvh] 使我们只能获取到可视窗口的高度。
举例
用 claude 网站举例,cdp命令 > full size screenshot,只能截当前页面。
去除外部标签中的 height == 100dvh,
function removeSpecificProperty() { const styleSheets = document.styleSheets; for (let i = 0; i < styleSheets.length; i++) { const styleSheet = styleSheets[i]; try { const rules = styleSheet.cssRules || styleSheet.rules; for (let j = 0; j < rules.length; j++) { const rule = rules[j]; if (rule.selectorText === '.h-screen' && rule.style.getPropertyValue('height') === '100dvh') { rule.style.removeProperty('height') } } } catch (error) { console.error(`处理样式表${styleSheet.href||'内联样式表'}时出错:`, error) } } } removeSpecificProperty()
- 作者:404False
- 链接:https://blog.404nofoundx.top/article/1bbfbc55-d559-80ce-87d2-c90b239dfd8b
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。