ElementHandle.screenshot() 方法
此方法在需要时将元素滚动到视图中,然后使用 Page.screenshot() 对元素进行截图。如果元素已从 DOM 中分离,则该方法会抛出错误。
签名:
class ElementHandle {
screenshot(
options: Readonly<ScreenshotOptions> & {
encoding: 'base64';
}
): Promise<string>;
}
参数
参数 | 类型 | 描述 |
---|---|---|
options | Readonly<ScreenshotOptions> & { encoding: 'base64'; } |
返回值
Promise<string>