parent
994939f86d
commit
bba7ca34c8
|
|
@ -1,6 +1,6 @@
|
||||||
# 🎭 Playwright
|
# 🎭 Playwright
|
||||||
|
|
||||||
[](https://www.npmjs.com/package/playwright) [](https://aka.ms/playwright-slack) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> <!-- GEN:webkit-version-badge -->[](https://webkit.org/)<!-- GEN:stop -->
|
[](https://www.npmjs.com/package/playwright) [](https://aka.ms/playwright-slack) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> <!-- GEN:webkit-version-badge -->[](https://webkit.org/)<!-- GEN:stop -->
|
||||||
|
|
||||||
## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/docs/api/class-playwright/)
|
## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/docs/api/class-playwright/)
|
||||||
|
|
||||||
|
|
@ -8,7 +8,7 @@ Playwright is a Node.js library to automate [Chromium](https://www.chromium.org/
|
||||||
|
|
||||||
| | Linux | macOS | Windows |
|
| | Linux | macOS | Windows |
|
||||||
| :--- | :---: | :---: | :---: |
|
| :--- | :---: | :---: | :---: |
|
||||||
| Chromium <!-- GEN:chromium-version -->91.0.4464.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| Chromium <!-- GEN:chromium-version -->91.0.4469.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
| WebKit <!-- GEN:webkit-version -->14.2<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| WebKit <!-- GEN:webkit-version -->14.2<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
| Firefox <!-- GEN:firefox-version -->88.0b8<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| Firefox <!-- GEN:firefox-version -->88.0b8<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
"browsers": [
|
"browsers": [
|
||||||
{
|
{
|
||||||
"name": "chromium",
|
"name": "chromium",
|
||||||
"revision": "867878",
|
"revision": "869727",
|
||||||
"installByDefault": true
|
"installByDefault": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5721,8 +5721,61 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
||||||
* UTC time in seconds, counted from January 1, 1970.
|
* UTC time in seconds, counted from January 1, 1970.
|
||||||
*/
|
*/
|
||||||
export type TimeSinceEpoch = number;
|
export type TimeSinceEpoch = number;
|
||||||
|
export interface DragDataItem {
|
||||||
|
/**
|
||||||
|
* Mime type of the dragged data.
|
||||||
|
*/
|
||||||
|
mimeType: string;
|
||||||
|
/**
|
||||||
|
* Depending of the value of `mimeType`, it contains the dragged link,
|
||||||
|
text, HTML markup or any other data.
|
||||||
|
*/
|
||||||
|
data: string;
|
||||||
|
/**
|
||||||
|
* Title associated with a link. Only valid when `mimeType` == "text/uri-list".
|
||||||
|
*/
|
||||||
|
title?: string;
|
||||||
|
/**
|
||||||
|
* Stores the base URL for the contained markup. Only valid when `mimeType`
|
||||||
|
== "text/html".
|
||||||
|
*/
|
||||||
|
baseURL?: string;
|
||||||
|
}
|
||||||
|
export interface DragData {
|
||||||
|
items: DragDataItem[];
|
||||||
|
/**
|
||||||
|
* Bit field representing allowed drag operations. Copy = 1, Link = 2, Move = 16
|
||||||
|
*/
|
||||||
|
dragOperationsMask: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dispatches a drag event into the page.
|
||||||
|
*/
|
||||||
|
export type dispatchDragEventParameters = {
|
||||||
|
/**
|
||||||
|
* Type of the drag event.
|
||||||
|
*/
|
||||||
|
type: "dragEnter"|"dragOver"|"drop"|"dragCancel";
|
||||||
|
/**
|
||||||
|
* X coordinate of the event relative to the main frame's viewport in CSS pixels.
|
||||||
|
*/
|
||||||
|
x: number;
|
||||||
|
/**
|
||||||
|
* Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to
|
||||||
|
the top of the viewport and Y increases as it proceeds towards the bottom of the viewport.
|
||||||
|
*/
|
||||||
|
y: number;
|
||||||
|
data: DragData;
|
||||||
|
/**
|
||||||
|
* Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8
|
||||||
|
(default: 0).
|
||||||
|
*/
|
||||||
|
modifiers?: number;
|
||||||
|
}
|
||||||
|
export type dispatchDragEventReturnValue = {
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Dispatches a key event to the page.
|
* Dispatches a key event to the page.
|
||||||
*/
|
*/
|
||||||
|
|
@ -8971,6 +9024,34 @@ continueInterceptedRequest call.
|
||||||
*/
|
*/
|
||||||
nodeId: DOM.NodeId;
|
nodeId: DOM.NodeId;
|
||||||
}
|
}
|
||||||
|
export interface ScrollSnapContainerHighlightConfig {
|
||||||
|
/**
|
||||||
|
* The style of the snapport border (default: transparent)
|
||||||
|
*/
|
||||||
|
snapportBorder?: LineStyle;
|
||||||
|
/**
|
||||||
|
* The style of the snap area border (default: transparent)
|
||||||
|
*/
|
||||||
|
snapAreaBorder?: LineStyle;
|
||||||
|
/**
|
||||||
|
* The margin highlight fill color (default: transparent).
|
||||||
|
*/
|
||||||
|
scrollMarginColor?: DOM.RGBA;
|
||||||
|
/**
|
||||||
|
* The padding highlight fill color (default: transparent).
|
||||||
|
*/
|
||||||
|
scrollPaddingColor?: DOM.RGBA;
|
||||||
|
}
|
||||||
|
export interface ScrollSnapHighlightConfig {
|
||||||
|
/**
|
||||||
|
* A descriptor for the highlight appearance of scroll snap containers.
|
||||||
|
*/
|
||||||
|
scrollSnapContainerHighlightConfig: ScrollSnapContainerHighlightConfig;
|
||||||
|
/**
|
||||||
|
* Identifier of the node to highlight.
|
||||||
|
*/
|
||||||
|
nodeId: DOM.NodeId;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Configuration for dual screen hinge
|
* Configuration for dual screen hinge
|
||||||
*/
|
*/
|
||||||
|
|
@ -9300,6 +9381,14 @@ Backend then generates 'inspectNodeRequested' event upon element selection.
|
||||||
}
|
}
|
||||||
export type setShowFlexOverlaysReturnValue = {
|
export type setShowFlexOverlaysReturnValue = {
|
||||||
}
|
}
|
||||||
|
export type setShowScrollSnapOverlaysParameters = {
|
||||||
|
/**
|
||||||
|
* An array of node identifiers and descriptors for the highlight appearance.
|
||||||
|
*/
|
||||||
|
scrollSnapHighlightConfigs: ScrollSnapHighlightConfig[];
|
||||||
|
}
|
||||||
|
export type setShowScrollSnapOverlaysReturnValue = {
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Requests that backend shows paint rectangles
|
* Requests that backend shows paint rectangles
|
||||||
*/
|
*/
|
||||||
|
|
@ -16432,6 +16521,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"IndexedDB.getMetadata": IndexedDB.getMetadataParameters;
|
"IndexedDB.getMetadata": IndexedDB.getMetadataParameters;
|
||||||
"IndexedDB.requestDatabase": IndexedDB.requestDatabaseParameters;
|
"IndexedDB.requestDatabase": IndexedDB.requestDatabaseParameters;
|
||||||
"IndexedDB.requestDatabaseNames": IndexedDB.requestDatabaseNamesParameters;
|
"IndexedDB.requestDatabaseNames": IndexedDB.requestDatabaseNamesParameters;
|
||||||
|
"Input.dispatchDragEvent": Input.dispatchDragEventParameters;
|
||||||
"Input.dispatchKeyEvent": Input.dispatchKeyEventParameters;
|
"Input.dispatchKeyEvent": Input.dispatchKeyEventParameters;
|
||||||
"Input.insertText": Input.insertTextParameters;
|
"Input.insertText": Input.insertTextParameters;
|
||||||
"Input.dispatchMouseEvent": Input.dispatchMouseEventParameters;
|
"Input.dispatchMouseEvent": Input.dispatchMouseEventParameters;
|
||||||
|
|
@ -16518,6 +16608,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"Overlay.setShowFPSCounter": Overlay.setShowFPSCounterParameters;
|
"Overlay.setShowFPSCounter": Overlay.setShowFPSCounterParameters;
|
||||||
"Overlay.setShowGridOverlays": Overlay.setShowGridOverlaysParameters;
|
"Overlay.setShowGridOverlays": Overlay.setShowGridOverlaysParameters;
|
||||||
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysParameters;
|
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysParameters;
|
||||||
|
"Overlay.setShowScrollSnapOverlays": Overlay.setShowScrollSnapOverlaysParameters;
|
||||||
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsParameters;
|
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsParameters;
|
||||||
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsParameters;
|
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsParameters;
|
||||||
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsParameters;
|
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsParameters;
|
||||||
|
|
@ -16946,6 +17037,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"IndexedDB.getMetadata": IndexedDB.getMetadataReturnValue;
|
"IndexedDB.getMetadata": IndexedDB.getMetadataReturnValue;
|
||||||
"IndexedDB.requestDatabase": IndexedDB.requestDatabaseReturnValue;
|
"IndexedDB.requestDatabase": IndexedDB.requestDatabaseReturnValue;
|
||||||
"IndexedDB.requestDatabaseNames": IndexedDB.requestDatabaseNamesReturnValue;
|
"IndexedDB.requestDatabaseNames": IndexedDB.requestDatabaseNamesReturnValue;
|
||||||
|
"Input.dispatchDragEvent": Input.dispatchDragEventReturnValue;
|
||||||
"Input.dispatchKeyEvent": Input.dispatchKeyEventReturnValue;
|
"Input.dispatchKeyEvent": Input.dispatchKeyEventReturnValue;
|
||||||
"Input.insertText": Input.insertTextReturnValue;
|
"Input.insertText": Input.insertTextReturnValue;
|
||||||
"Input.dispatchMouseEvent": Input.dispatchMouseEventReturnValue;
|
"Input.dispatchMouseEvent": Input.dispatchMouseEventReturnValue;
|
||||||
|
|
@ -17032,6 +17124,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"Overlay.setShowFPSCounter": Overlay.setShowFPSCounterReturnValue;
|
"Overlay.setShowFPSCounter": Overlay.setShowFPSCounterReturnValue;
|
||||||
"Overlay.setShowGridOverlays": Overlay.setShowGridOverlaysReturnValue;
|
"Overlay.setShowGridOverlays": Overlay.setShowGridOverlaysReturnValue;
|
||||||
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysReturnValue;
|
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysReturnValue;
|
||||||
|
"Overlay.setShowScrollSnapOverlays": Overlay.setShowScrollSnapOverlaysReturnValue;
|
||||||
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsReturnValue;
|
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsReturnValue;
|
||||||
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsReturnValue;
|
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsReturnValue;
|
||||||
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsReturnValue;
|
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsReturnValue;
|
||||||
|
|
|
||||||
|
|
@ -156,8 +156,8 @@ it('should work with regular expression passed from a different context', async
|
||||||
expect(intercepted).toBe(true);
|
expect(intercepted).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not break remote worker importScripts', async ({ page, server, browserName }) => {
|
it('should not break remote worker importScripts', async ({ page, server, isChromium, browserVersion }) => {
|
||||||
it.fail(browserName === 'chromium');
|
it.fail(isChromium && +browserVersion.split('.')[0] < 91);
|
||||||
|
|
||||||
await page.route('**', async request => {
|
await page.route('**', async request => {
|
||||||
await request.continue();
|
await request.continue();
|
||||||
|
|
|
||||||
|
|
@ -535,9 +535,7 @@ it('should support cors with GET', async ({page, server}) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should support cors with POST', async ({page, server, isChromium, browserChannel, isElectron, isAndroid}) => {
|
it('should support cors with POST', async ({page, server}) => {
|
||||||
it.fail(isChromium && !browserChannel && !isAndroid && !isElectron, 'https://github.com/microsoft/playwright/issues/6016');
|
|
||||||
|
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
await page.route('**/cars', async route => {
|
await page.route('**/cars', async route => {
|
||||||
await route.fulfill({
|
await route.fulfill({
|
||||||
|
|
@ -559,9 +557,7 @@ it('should support cors with POST', async ({page, server, isChromium, browserCha
|
||||||
expect(resp).toEqual(['electric', 'gas']);
|
expect(resp).toEqual(['electric', 'gas']);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should support cors with credentials', async ({page, server, isChromium, browserChannel, isElectron, isAndroid}) => {
|
it('should support cors with credentials', async ({page, server}) => {
|
||||||
it.fail(isChromium && !browserChannel && !isAndroid && !isElectron, 'https://github.com/microsoft/playwright/issues/6016');
|
|
||||||
|
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
await page.route('**/cars', async route => {
|
await page.route('**/cars', async route => {
|
||||||
await route.fulfill({
|
await route.fulfill({
|
||||||
|
|
@ -619,9 +615,7 @@ it('should reject cors with disallowed credentials', async ({page, server}) => {
|
||||||
expect(error).toBeTruthy();
|
expect(error).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should support cors for different methods', async ({page, server, isChromium, browserChannel, isElectron, isAndroid}) => {
|
it('should support cors for different methods', async ({page, server}) => {
|
||||||
it.fail(isChromium && !browserChannel && !isAndroid && !isElectron, 'https://github.com/microsoft/playwright/issues/6016');
|
|
||||||
|
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
await page.route('**/cars', async (route, request) => {
|
await page.route('**/cars', async (route, request) => {
|
||||||
await route.fulfill({
|
await route.fulfill({
|
||||||
|
|
|
||||||
93
types/protocol.d.ts
vendored
93
types/protocol.d.ts
vendored
|
|
@ -5721,8 +5721,61 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
||||||
* UTC time in seconds, counted from January 1, 1970.
|
* UTC time in seconds, counted from January 1, 1970.
|
||||||
*/
|
*/
|
||||||
export type TimeSinceEpoch = number;
|
export type TimeSinceEpoch = number;
|
||||||
|
export interface DragDataItem {
|
||||||
|
/**
|
||||||
|
* Mime type of the dragged data.
|
||||||
|
*/
|
||||||
|
mimeType: string;
|
||||||
|
/**
|
||||||
|
* Depending of the value of `mimeType`, it contains the dragged link,
|
||||||
|
text, HTML markup or any other data.
|
||||||
|
*/
|
||||||
|
data: string;
|
||||||
|
/**
|
||||||
|
* Title associated with a link. Only valid when `mimeType` == "text/uri-list".
|
||||||
|
*/
|
||||||
|
title?: string;
|
||||||
|
/**
|
||||||
|
* Stores the base URL for the contained markup. Only valid when `mimeType`
|
||||||
|
== "text/html".
|
||||||
|
*/
|
||||||
|
baseURL?: string;
|
||||||
|
}
|
||||||
|
export interface DragData {
|
||||||
|
items: DragDataItem[];
|
||||||
|
/**
|
||||||
|
* Bit field representing allowed drag operations. Copy = 1, Link = 2, Move = 16
|
||||||
|
*/
|
||||||
|
dragOperationsMask: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dispatches a drag event into the page.
|
||||||
|
*/
|
||||||
|
export type dispatchDragEventParameters = {
|
||||||
|
/**
|
||||||
|
* Type of the drag event.
|
||||||
|
*/
|
||||||
|
type: "dragEnter"|"dragOver"|"drop"|"dragCancel";
|
||||||
|
/**
|
||||||
|
* X coordinate of the event relative to the main frame's viewport in CSS pixels.
|
||||||
|
*/
|
||||||
|
x: number;
|
||||||
|
/**
|
||||||
|
* Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to
|
||||||
|
the top of the viewport and Y increases as it proceeds towards the bottom of the viewport.
|
||||||
|
*/
|
||||||
|
y: number;
|
||||||
|
data: DragData;
|
||||||
|
/**
|
||||||
|
* Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8
|
||||||
|
(default: 0).
|
||||||
|
*/
|
||||||
|
modifiers?: number;
|
||||||
|
}
|
||||||
|
export type dispatchDragEventReturnValue = {
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Dispatches a key event to the page.
|
* Dispatches a key event to the page.
|
||||||
*/
|
*/
|
||||||
|
|
@ -8971,6 +9024,34 @@ continueInterceptedRequest call.
|
||||||
*/
|
*/
|
||||||
nodeId: DOM.NodeId;
|
nodeId: DOM.NodeId;
|
||||||
}
|
}
|
||||||
|
export interface ScrollSnapContainerHighlightConfig {
|
||||||
|
/**
|
||||||
|
* The style of the snapport border (default: transparent)
|
||||||
|
*/
|
||||||
|
snapportBorder?: LineStyle;
|
||||||
|
/**
|
||||||
|
* The style of the snap area border (default: transparent)
|
||||||
|
*/
|
||||||
|
snapAreaBorder?: LineStyle;
|
||||||
|
/**
|
||||||
|
* The margin highlight fill color (default: transparent).
|
||||||
|
*/
|
||||||
|
scrollMarginColor?: DOM.RGBA;
|
||||||
|
/**
|
||||||
|
* The padding highlight fill color (default: transparent).
|
||||||
|
*/
|
||||||
|
scrollPaddingColor?: DOM.RGBA;
|
||||||
|
}
|
||||||
|
export interface ScrollSnapHighlightConfig {
|
||||||
|
/**
|
||||||
|
* A descriptor for the highlight appearance of scroll snap containers.
|
||||||
|
*/
|
||||||
|
scrollSnapContainerHighlightConfig: ScrollSnapContainerHighlightConfig;
|
||||||
|
/**
|
||||||
|
* Identifier of the node to highlight.
|
||||||
|
*/
|
||||||
|
nodeId: DOM.NodeId;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Configuration for dual screen hinge
|
* Configuration for dual screen hinge
|
||||||
*/
|
*/
|
||||||
|
|
@ -9300,6 +9381,14 @@ Backend then generates 'inspectNodeRequested' event upon element selection.
|
||||||
}
|
}
|
||||||
export type setShowFlexOverlaysReturnValue = {
|
export type setShowFlexOverlaysReturnValue = {
|
||||||
}
|
}
|
||||||
|
export type setShowScrollSnapOverlaysParameters = {
|
||||||
|
/**
|
||||||
|
* An array of node identifiers and descriptors for the highlight appearance.
|
||||||
|
*/
|
||||||
|
scrollSnapHighlightConfigs: ScrollSnapHighlightConfig[];
|
||||||
|
}
|
||||||
|
export type setShowScrollSnapOverlaysReturnValue = {
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Requests that backend shows paint rectangles
|
* Requests that backend shows paint rectangles
|
||||||
*/
|
*/
|
||||||
|
|
@ -16432,6 +16521,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"IndexedDB.getMetadata": IndexedDB.getMetadataParameters;
|
"IndexedDB.getMetadata": IndexedDB.getMetadataParameters;
|
||||||
"IndexedDB.requestDatabase": IndexedDB.requestDatabaseParameters;
|
"IndexedDB.requestDatabase": IndexedDB.requestDatabaseParameters;
|
||||||
"IndexedDB.requestDatabaseNames": IndexedDB.requestDatabaseNamesParameters;
|
"IndexedDB.requestDatabaseNames": IndexedDB.requestDatabaseNamesParameters;
|
||||||
|
"Input.dispatchDragEvent": Input.dispatchDragEventParameters;
|
||||||
"Input.dispatchKeyEvent": Input.dispatchKeyEventParameters;
|
"Input.dispatchKeyEvent": Input.dispatchKeyEventParameters;
|
||||||
"Input.insertText": Input.insertTextParameters;
|
"Input.insertText": Input.insertTextParameters;
|
||||||
"Input.dispatchMouseEvent": Input.dispatchMouseEventParameters;
|
"Input.dispatchMouseEvent": Input.dispatchMouseEventParameters;
|
||||||
|
|
@ -16518,6 +16608,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"Overlay.setShowFPSCounter": Overlay.setShowFPSCounterParameters;
|
"Overlay.setShowFPSCounter": Overlay.setShowFPSCounterParameters;
|
||||||
"Overlay.setShowGridOverlays": Overlay.setShowGridOverlaysParameters;
|
"Overlay.setShowGridOverlays": Overlay.setShowGridOverlaysParameters;
|
||||||
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysParameters;
|
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysParameters;
|
||||||
|
"Overlay.setShowScrollSnapOverlays": Overlay.setShowScrollSnapOverlaysParameters;
|
||||||
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsParameters;
|
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsParameters;
|
||||||
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsParameters;
|
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsParameters;
|
||||||
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsParameters;
|
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsParameters;
|
||||||
|
|
@ -16946,6 +17037,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"IndexedDB.getMetadata": IndexedDB.getMetadataReturnValue;
|
"IndexedDB.getMetadata": IndexedDB.getMetadataReturnValue;
|
||||||
"IndexedDB.requestDatabase": IndexedDB.requestDatabaseReturnValue;
|
"IndexedDB.requestDatabase": IndexedDB.requestDatabaseReturnValue;
|
||||||
"IndexedDB.requestDatabaseNames": IndexedDB.requestDatabaseNamesReturnValue;
|
"IndexedDB.requestDatabaseNames": IndexedDB.requestDatabaseNamesReturnValue;
|
||||||
|
"Input.dispatchDragEvent": Input.dispatchDragEventReturnValue;
|
||||||
"Input.dispatchKeyEvent": Input.dispatchKeyEventReturnValue;
|
"Input.dispatchKeyEvent": Input.dispatchKeyEventReturnValue;
|
||||||
"Input.insertText": Input.insertTextReturnValue;
|
"Input.insertText": Input.insertTextReturnValue;
|
||||||
"Input.dispatchMouseEvent": Input.dispatchMouseEventReturnValue;
|
"Input.dispatchMouseEvent": Input.dispatchMouseEventReturnValue;
|
||||||
|
|
@ -17032,6 +17124,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"Overlay.setShowFPSCounter": Overlay.setShowFPSCounterReturnValue;
|
"Overlay.setShowFPSCounter": Overlay.setShowFPSCounterReturnValue;
|
||||||
"Overlay.setShowGridOverlays": Overlay.setShowGridOverlaysReturnValue;
|
"Overlay.setShowGridOverlays": Overlay.setShowGridOverlaysReturnValue;
|
||||||
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysReturnValue;
|
"Overlay.setShowFlexOverlays": Overlay.setShowFlexOverlaysReturnValue;
|
||||||
|
"Overlay.setShowScrollSnapOverlays": Overlay.setShowScrollSnapOverlaysReturnValue;
|
||||||
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsReturnValue;
|
"Overlay.setShowPaintRects": Overlay.setShowPaintRectsReturnValue;
|
||||||
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsReturnValue;
|
"Overlay.setShowLayoutShiftRegions": Overlay.setShowLayoutShiftRegionsReturnValue;
|
||||||
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsReturnValue;
|
"Overlay.setShowScrollBottleneckRects": Overlay.setShowScrollBottleneckRectsReturnValue;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue