Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/playwright-core/browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
{
"name": "webkit",
"revision": "2215",
"revision": "2216",
"installByDefault": true,
"revisionOverrides": {
"debian11-x64": "2105",
Expand Down
48 changes: 0 additions & 48 deletions packages/playwright-core/src/server/webkit/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6689,50 +6689,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
*/
frameId: Network.FrameId;
}
/**
* Fired when frame has started loading.
*/
export type frameStartedLoadingPayload = {
/**
* Id of the frame that has started loading.
*/
frameId: Network.FrameId;
}
/**
* Fired when frame has stopped loading.
*/
export type frameStoppedLoadingPayload = {
/**
* Id of the frame that has stopped loading.
*/
frameId: Network.FrameId;
}
/**
* Fired when frame schedules a potential navigation.
*/
export type frameScheduledNavigationPayload = {
/**
* Id of the frame that has scheduled a navigation.
*/
frameId: Network.FrameId;
/**
* Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start.
*/
delay: number;
/**
* Whether the naviation will happen in the same frame.
*/
targetIsCurrentFrame: boolean;
}
/**
* Fired when frame no longer has a scheduled navigation.
*/
export type frameClearedScheduledNavigationPayload = {
/**
* Id of the frame that has cleared its scheduled navigation.
*/
frameId: Network.FrameId;
}
/**
* Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation.
*/
Expand Down Expand Up @@ -9207,10 +9163,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.frameNavigated": Page.frameNavigatedPayload;
"Page.frameAttached": Page.frameAttachedPayload;
"Page.frameDetached": Page.frameDetachedPayload;
"Page.frameStartedLoading": Page.frameStartedLoadingPayload;
"Page.frameStoppedLoading": Page.frameStoppedLoadingPayload;
"Page.frameScheduledNavigation": Page.frameScheduledNavigationPayload;
"Page.frameClearedScheduledNavigation": Page.frameClearedScheduledNavigationPayload;
"Page.navigatedWithinDocument": Page.navigatedWithinDocumentPayload;
"Page.defaultUserPreferencesDidChange": Page.defaultUserPreferencesDidChangePayload;
"Page.willCheckNavigationPolicy": Page.willCheckNavigationPolicyPayload;
Expand Down
Loading