You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: json/browser_protocol.json
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20260,6 +20260,42 @@
20260
20260
"name": "frameResized",
20261
20261
"experimental": true
20262
20262
},
20263
+
{
20264
+
"name": "frameStartedNavigating",
20265
+
"description": "Fired when a navigation starts. This event is fired for both\nrenderer-initiated and browser-initiated navigations. For renderer-initiated\nnavigations, the event is fired after `frameRequestedNavigation`.\nNavigation may still be cancelled after the event is issued. Multiple events\ncan be fired for a single navigation, for example, when a same-document\nnavigation becomes a cross-document navigation (such as in the case of a\nframeset).",
20266
+
"experimental": true,
20267
+
"parameters": [
20268
+
{
20269
+
"name": "frameId",
20270
+
"description": "ID of the frame that is being navigated.",
20271
+
"$ref": "FrameId"
20272
+
},
20273
+
{
20274
+
"name": "url",
20275
+
"description": "The URL the navigation started with. The final URL can be different.",
20276
+
"type": "string"
20277
+
},
20278
+
{
20279
+
"name": "loaderId",
20280
+
"description": "Loader identifier. Even though it is present in case of same-document\nnavigation, the previously committed loaderId would not change unless\nthe navigation changes from a same-document to a cross-document\nnavigation.",
20281
+
"$ref": "Network.LoaderId"
20282
+
},
20283
+
{
20284
+
"name": "navigationType",
20285
+
"type": "string",
20286
+
"enum": [
20287
+
"reload",
20288
+
"reloadBypassingCache",
20289
+
"restore",
20290
+
"restoreWithPost",
20291
+
"historySameDocument",
20292
+
"historyDifferentDocument",
20293
+
"sameDocument",
20294
+
"differentDocument"
20295
+
]
20296
+
}
20297
+
]
20298
+
},
20263
20299
{
20264
20300
"name": "frameRequestedNavigation",
20265
20301
"description": "Fired when a renderer-initiated navigation is requested.\nNavigation may still be cancelled after the event is issued.",
0 commit comments