chore: fix typings for ElementHandle.screenshot() options (#7602)
This commit is contained in:
parent
a271145b06
commit
b4ba9c803d
@ -17,7 +17,7 @@
|
|||||||
import { assert } from './assert.js';
|
import { assert } from './assert.js';
|
||||||
import { helper, debugError } from './helper.js';
|
import { helper, debugError } from './helper.js';
|
||||||
import { ExecutionContext } from './ExecutionContext.js';
|
import { ExecutionContext } from './ExecutionContext.js';
|
||||||
import { Page } from './Page.js';
|
import { Page, ScreenshotOptions } from './Page.js';
|
||||||
import { CDPSession } from './Connection.js';
|
import { CDPSession } from './Connection.js';
|
||||||
import { KeyInput } from './USKeyboardLayout.js';
|
import { KeyInput } from './USKeyboardLayout.js';
|
||||||
import { FrameManager, Frame } from './FrameManager.js';
|
import { FrameManager, Frame } from './FrameManager.js';
|
||||||
@ -813,7 +813,7 @@ export class ElementHandle<
|
|||||||
* {@link Page.screenshot} to take a screenshot of the element.
|
* {@link Page.screenshot} to take a screenshot of the element.
|
||||||
* If the element is detached from DOM, the method throws an error.
|
* If the element is detached from DOM, the method throws an error.
|
||||||
*/
|
*/
|
||||||
async screenshot(options = {}): Promise<string | Buffer> {
|
async screenshot(options: ScreenshotOptions = {}): Promise<string | Buffer> {
|
||||||
let needsViewportReset = false;
|
let needsViewportReset = false;
|
||||||
|
|
||||||
let boundingBox = await this.boundingBox();
|
let boundingBox = await this.boundingBox();
|
||||||
|
@ -428,6 +428,13 @@ function compareDocumentations(actual, expected) {
|
|||||||
expectedName: 'DragData',
|
expectedName: 'DragData',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
'Method ElementHandle.screenshot() options',
|
||||||
|
{
|
||||||
|
actualName: 'Object',
|
||||||
|
expectedName: 'ScreenshotOptions',
|
||||||
|
},
|
||||||
|
],
|
||||||
[
|
[
|
||||||
'Method Keyboard.down() key',
|
'Method Keyboard.down() key',
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user