playwright-core 1.55.0-alpha-2025-08-11 → 1.55.0-alpha-2025-08-12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -861,6 +861,7 @@ CORS RFC1918 enforcement.
861
861
  export type AttributionReportingIssueType = "PermissionPolicyDisabled"|"UntrustworthyReportingOrigin"|"InsecureContext"|"InvalidHeader"|"InvalidRegisterTriggerHeader"|"SourceAndTriggerHeaders"|"SourceIgnored"|"TriggerIgnored"|"OsSourceIgnored"|"OsTriggerIgnored"|"InvalidRegisterOsSourceHeader"|"InvalidRegisterOsTriggerHeader"|"WebAndOsHeaders"|"NoWebOrOsSupport"|"NavigationRegistrationWithoutTransientUserActivation"|"InvalidInfoHeader"|"NoRegisterSourceHeader"|"NoRegisterTriggerHeader"|"NoRegisterOsSourceHeader"|"NoRegisterOsTriggerHeader"|"NavigationRegistrationUniqueScopeAlreadySet";
862
862
  export type SharedDictionaryError = "UseErrorCrossOriginNoCorsRequest"|"UseErrorDictionaryLoadFailure"|"UseErrorMatchingDictionaryNotUsed"|"UseErrorUnexpectedContentDictionaryHeader"|"WriteErrorCossOriginNoCorsRequest"|"WriteErrorDisallowedBySettings"|"WriteErrorExpiredResponse"|"WriteErrorFeatureDisabled"|"WriteErrorInsufficientResources"|"WriteErrorInvalidMatchField"|"WriteErrorInvalidStructuredHeader"|"WriteErrorNavigationRequest"|"WriteErrorNoMatchField"|"WriteErrorNonListMatchDestField"|"WriteErrorNonSecureContext"|"WriteErrorNonStringIdField"|"WriteErrorNonStringInMatchDestList"|"WriteErrorNonStringMatchField"|"WriteErrorNonTokenTypeField"|"WriteErrorRequestAborted"|"WriteErrorShuttingDown"|"WriteErrorTooLongIdField"|"WriteErrorUnsupportedType";
863
863
  export type SRIMessageSignatureError = "MissingSignatureHeader"|"MissingSignatureInputHeader"|"InvalidSignatureHeader"|"InvalidSignatureInputHeader"|"SignatureHeaderValueIsNotByteSequence"|"SignatureHeaderValueIsParameterized"|"SignatureHeaderValueIsIncorrectLength"|"SignatureInputHeaderMissingLabel"|"SignatureInputHeaderValueNotInnerList"|"SignatureInputHeaderValueMissingComponents"|"SignatureInputHeaderInvalidComponentType"|"SignatureInputHeaderInvalidComponentName"|"SignatureInputHeaderInvalidHeaderComponentParameter"|"SignatureInputHeaderInvalidDerivedComponentParameter"|"SignatureInputHeaderKeyIdLength"|"SignatureInputHeaderInvalidParameter"|"SignatureInputHeaderMissingRequiredParameters"|"ValidationFailedSignatureExpired"|"ValidationFailedInvalidLength"|"ValidationFailedSignatureMismatch"|"ValidationFailedIntegrityMismatch";
864
+ export type UnencodedDigestError = "MalformedDictionary"|"UnknownAlgorithm"|"IncorrectDigestType"|"IncorrectDigestLength";
864
865
  /**
865
866
  * Details for issues around "Attribution Reporting API" usage.
866
867
  Explainer: https://github.com/WICG/attribution-reporting-api
@@ -900,6 +901,10 @@ instead of "limited-quirks".
900
901
  integrityAssertions: string[];
901
902
  request: AffectedRequest;
902
903
  }
904
+ export interface UnencodedDigestIssueDetails {
905
+ error: UnencodedDigestError;
906
+ request: AffectedRequest;
907
+ }
903
908
  export type GenericIssueErrorType = "FormLabelForNameError"|"FormDuplicateIdForInputError"|"FormInputWithNoLabelError"|"FormAutocompleteAttributeEmptyError"|"FormEmptyIdAndNameAttributesForInputError"|"FormAriaLabelledByToNonExistingId"|"FormInputAssignedAutocompleteValueToIdOrNameAttributeError"|"FormLabelHasNeitherForNorNestedInput"|"FormLabelForMatchesNonExistingIdError"|"FormInputHasWrongButWellIntendedAutocompleteValueError"|"ResponseWasBlockedByORB";
904
909
  /**
905
910
  * Depending on the concrete errorType, different properties are set.
@@ -999,13 +1004,13 @@ features, encourage the use of new ones, and provide general guidance.
999
1004
  */
1000
1005
  partitioningBlobURLInfo: PartitioningBlobURLInfo;
1001
1006
  }
1002
- export type SelectElementAccessibilityIssueReason = "DisallowedSelectChild"|"DisallowedOptGroupChild"|"NonPhrasingContentOptionChild"|"InteractiveContentOptionChild"|"InteractiveContentLegendChild";
1007
+ export type ElementAccessibilityIssueReason = "DisallowedSelectChild"|"DisallowedOptGroupChild"|"NonPhrasingContentOptionChild"|"InteractiveContentOptionChild"|"InteractiveContentLegendChild"|"InteractiveContentSummaryDescendant";
1003
1008
  /**
1004
- * This issue warns about errors in the select element content model.
1009
+ * This issue warns about errors in the select or summary element content model.
1005
1010
  */
1006
- export interface SelectElementAccessibilityIssueDetails {
1011
+ export interface ElementAccessibilityIssueDetails {
1007
1012
  nodeId: DOM.BackendNodeId;
1008
- selectElementAccessibilityIssueReason: SelectElementAccessibilityIssueReason;
1013
+ elementAccessibilityIssueReason: ElementAccessibilityIssueReason;
1009
1014
  hasDisallowedAttributes: boolean;
1010
1015
  }
1011
1016
  export type StyleSheetLoadingIssueReason = "LateImportRule"|"RequestFailed";
@@ -1062,7 +1067,7 @@ re-identify users.
1062
1067
  optional fields in InspectorIssueDetails to convey more specific
1063
1068
  information about the kind of issue.
1064
1069
  */
1065
- export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"PartitioningBlobURLIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"CookieDeprecationMetadataIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue"|"SharedDictionaryIssue"|"SelectElementAccessibilityIssue"|"SRIMessageSignatureIssue"|"UserReidentificationIssue";
1070
+ export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"PartitioningBlobURLIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"CookieDeprecationMetadataIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue"|"SharedDictionaryIssue"|"ElementAccessibilityIssue"|"SRIMessageSignatureIssue"|"UnencodedDigestIssue"|"UserReidentificationIssue";
1066
1071
  /**
1067
1072
  * This struct holds a list of optional fields with additional information
1068
1073
  specific to the kind of issue. When adding a new issue code, please also
@@ -1091,8 +1096,9 @@ add a new optional field to this type.
1091
1096
  propertyRuleIssueDetails?: PropertyRuleIssueDetails;
1092
1097
  federatedAuthUserInfoRequestIssueDetails?: FederatedAuthUserInfoRequestIssueDetails;
1093
1098
  sharedDictionaryIssueDetails?: SharedDictionaryIssueDetails;
1094
- selectElementAccessibilityIssueDetails?: SelectElementAccessibilityIssueDetails;
1099
+ elementAccessibilityIssueDetails?: ElementAccessibilityIssueDetails;
1095
1100
  sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
1101
+ unencodedDigestIssueDetails?: UnencodedDigestIssueDetails;
1096
1102
  userReidentificationIssueDetails?: UserReidentificationIssueDetails;
1097
1103
  }
1098
1104
  /**
@@ -1978,6 +1984,27 @@ with 'left', 'top', 'width' or 'height'. Leaves unspecified fields unchanged.
1978
1984
  }
1979
1985
  export type setWindowBoundsReturnValue = {
1980
1986
  }
1987
+ /**
1988
+ * Set size of the browser contents resizing browser window as necessary.
1989
+ */
1990
+ export type setContentsSizeParameters = {
1991
+ /**
1992
+ * Browser window id.
1993
+ */
1994
+ windowId: WindowID;
1995
+ /**
1996
+ * The window contents width in DIP. Assumes current width if omitted.
1997
+ Must be specified if 'height' is omitted.
1998
+ */
1999
+ width?: number;
2000
+ /**
2001
+ * The window contents height in DIP. Assumes current height if omitted.
2002
+ Must be specified if 'width' is omitted.
2003
+ */
2004
+ height?: number;
2005
+ }
2006
+ export type setContentsSizeReturnValue = {
2007
+ }
1981
2008
  /**
1982
2009
  * Set dock tile details, platform-specific.
1983
2010
  */
@@ -2558,6 +2585,10 @@ available).
2558
2585
  * true if the query contains scroll-state() queries.
2559
2586
  */
2560
2587
  queriesScrollState?: boolean;
2588
+ /**
2589
+ * true if the query contains anchored() queries.
2590
+ */
2591
+ queriesAnchored?: boolean;
2561
2592
  }
2562
2593
  /**
2563
2594
  * CSS Supports at-rule descriptor.
@@ -3307,6 +3338,14 @@ will not be set if there is no active position-try fallback.
3307
3338
  */
3308
3339
  cssFunctionRules?: CSSFunctionRule[];
3309
3340
  }
3341
+ /**
3342
+ * Returns the values of the default UA-defined environment variables used in env()
3343
+ */
3344
+ export type getEnvironmentVariablesParameters = {
3345
+ }
3346
+ export type getEnvironmentVariablesReturnValue = {
3347
+ environmentVariables: { [key: string]: string };
3348
+ }
3310
3349
  /**
3311
3350
  * Returns all media queries parsed by the rendering engine.
3312
3351
  */
@@ -4691,6 +4730,10 @@ either returned or not.
4691
4730
  * JavaScript object id of the node wrapper.
4692
4731
  */
4693
4732
  objectId?: Runtime.RemoteObjectId;
4733
+ /**
4734
+ * Include all shadow roots. Equals to false if not specified.
4735
+ */
4736
+ includeShadowDOM?: boolean;
4694
4737
  }
4695
4738
  export type getOuterHTMLReturnValue = {
4696
4739
  /**
@@ -5214,9 +5257,9 @@ $x functions).
5214
5257
  /**
5215
5258
  * Returns the query container of the given node based on container query
5216
5259
  conditions: containerName, physical and logical axes, and whether it queries
5217
- scroll-state. If no axes are provided and queriesScrollState is false, the
5218
- style container is returned, which is the direct parent or the closest
5219
- element with a matching container-name.
5260
+ scroll-state or anchored elements. If no axes are provided and
5261
+ queriesScrollState is false, the style container is returned, which is the
5262
+ direct parent or the closest element with a matching container-name.
5220
5263
  */
5221
5264
  export type getContainerForNodeParameters = {
5222
5265
  nodeId: NodeId;
@@ -5224,6 +5267,7 @@ element with a matching container-name.
5224
5267
  physicalAxes?: PhysicalAxes;
5225
5268
  logicalAxes?: LogicalAxes;
5226
5269
  queriesScrollState?: boolean;
5270
+ queriesAnchored?: boolean;
5227
5271
  }
5228
5272
  export type getContainerForNodeReturnValue = {
5229
5273
  /**
@@ -5270,6 +5314,27 @@ the given positioned element.
5270
5314
  */
5271
5315
  nodeId: NodeId;
5272
5316
  }
5317
+ /**
5318
+ * When enabling, this API force-opens the popover identified by nodeId
5319
+ and keeps it open until disabled.
5320
+ */
5321
+ export type forceShowPopoverParameters = {
5322
+ /**
5323
+ * Id of the popover HTMLElement
5324
+ */
5325
+ nodeId: NodeId;
5326
+ /**
5327
+ * If true, opens the popover and keeps it open. If false, closes the
5328
+ popover if it was previously force-opened.
5329
+ */
5330
+ enable: boolean;
5331
+ }
5332
+ export type forceShowPopoverReturnValue = {
5333
+ /**
5334
+ * List of popovers that were closed in order to respect popover stacking order.
5335
+ */
5336
+ nodeIds: NodeId[];
5337
+ }
5273
5338
  }
5274
5339
 
5275
5340
  /**
@@ -6842,6 +6907,17 @@ on Android.
6842
6907
  }
6843
6908
  export type setDisabledImageTypesReturnValue = {
6844
6909
  }
6910
+ /**
6911
+ * Override the value of navigator.connection.saveData
6912
+ */
6913
+ export type setDataSaverOverrideParameters = {
6914
+ /**
6915
+ * Override value. Omitting the parameter disables the override.
6916
+ */
6917
+ dataSaverEnabled?: boolean;
6918
+ }
6919
+ export type setDataSaverOverrideReturnValue = {
6920
+ }
6845
6921
  export type setHardwareConcurrencyOverrideParameters = {
6846
6922
  /**
6847
6923
  * Hardware concurrency to report
@@ -9125,6 +9201,11 @@ Otherwise, the API is not used.
9125
9201
  * Security details for the request.
9126
9202
  */
9127
9203
  securityDetails?: SecurityDetails;
9204
+ /**
9205
+ * Indicates whether the request was sent through IP Protection proxies. If
9206
+ set to true, the request used the IP Protection privacy feature.
9207
+ */
9208
+ isIpProtectionUsed?: boolean;
9128
9209
  }
9129
9210
  /**
9130
9211
  * WebSocket request data.
@@ -9693,7 +9774,7 @@ Expected to be unsigned integer.
9693
9774
  remotePort?: number;
9694
9775
  }
9695
9776
  export type PrivateNetworkRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate"|"WarnFromInsecureToMorePrivate"|"PreflightBlock"|"PreflightWarn"|"PermissionBlock"|"PermissionWarn";
9696
- export type IPAddressSpace = "Local"|"Private"|"Public"|"Unknown";
9777
+ export type IPAddressSpace = "Loopback"|"Local"|"Public"|"Unknown";
9697
9778
  export interface ConnectTiming {
9698
9779
  /**
9699
9780
  * Timing's requestTime is a baseline in seconds, while the other numbers are ticks in
@@ -11613,7 +11694,7 @@ Page reload is required before the new cookie behavior will be observed
11613
11694
  */
11614
11695
  maskColor?: DOM.RGBA;
11615
11696
  }
11616
- export type InspectMode = "searchForNode"|"searchForUAShadowDOM"|"captureAreaScreenshot"|"showDistances"|"none";
11697
+ export type InspectMode = "searchForNode"|"searchForUAShadowDOM"|"captureAreaScreenshot"|"none";
11617
11698
 
11618
11699
  /**
11619
11700
  * Fired when the node should be inspected. This happens after call to `setInspectMode` or when
@@ -12111,7 +12192,7 @@ available.
12111
12192
  in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
12112
12193
  LINT.IfChange(PermissionsPolicyFeature)
12113
12194
  */
12114
- export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"attribution-reporting"|"autoplay"|"bluetooth"|"browsing-topics"|"camera"|"captured-surface-control"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-prefers-color-scheme"|"ch-prefers-reduced-motion"|"ch-prefers-reduced-transparency"|"ch-rtt"|"ch-save-data"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-high-entropy-values"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-form-factors"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"compute-pressure"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"device-attributes"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"fenced-unpartitioned-storage-read"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"language-detector"|"language-model"|"local-fonts"|"local-network-access"|"magnetometer"|"media-playback-while-not-visible"|"microphone"|"midi"|"on-device-speech-recognition"|"otp-credentials"|"payment"|"picture-in-picture"|"popins"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"record-ad-auction-events"|"rewriter"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"shared-storage"|"shared-storage-select-url"|"smart-card"|"speaker-selection"|"storage-access"|"sub-apps"|"summarizer"|"sync-xhr"|"translator"|"unload"|"usb"|"usb-unrestricted"|"vertical-scroll"|"web-app-installation"|"web-printing"|"web-share"|"window-management"|"writer"|"xr-spatial-tracking";
12195
+ export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"aria-notify"|"attribution-reporting"|"autoplay"|"bluetooth"|"browsing-topics"|"camera"|"captured-surface-control"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-prefers-color-scheme"|"ch-prefers-reduced-motion"|"ch-prefers-reduced-transparency"|"ch-rtt"|"ch-save-data"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-high-entropy-values"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-form-factors"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"compute-pressure"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"device-attributes"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"fenced-unpartitioned-storage-read"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"language-detector"|"language-model"|"local-fonts"|"local-network-access"|"magnetometer"|"media-playback-while-not-visible"|"microphone"|"midi"|"on-device-speech-recognition"|"otp-credentials"|"payment"|"picture-in-picture"|"popins"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"record-ad-auction-events"|"rewriter"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"shared-storage"|"shared-storage-select-url"|"smart-card"|"speaker-selection"|"storage-access"|"sub-apps"|"summarizer"|"sync-xhr"|"translator"|"unload"|"usb"|"usb-unrestricted"|"vertical-scroll"|"web-app-installation"|"web-printing"|"web-share"|"window-management"|"writer"|"xr-spatial-tracking";
12115
12196
  /**
12116
12197
  * Reason for a permissions policy feature to be disabled.
12117
12198
  */
@@ -12710,7 +12791,7 @@ https://github.com/WICG/manifest-incubations/blob/gh-pages/scope_extensions-expl
12710
12791
  /**
12711
12792
  * List of not restored reasons for back-forward cache.
12712
12793
  */
12713
- export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"SchedulerTrackedFeatureUsed"|"ConflictingBrowsingInstance"|"CacheFlushed"|"ServiceWorkerVersionActivation"|"SessionRestored"|"ServiceWorkerPostMessage"|"EnteredBackForwardCacheBeforeServiceWorkerHostAdded"|"RenderFrameHostReused_SameSite"|"RenderFrameHostReused_CrossSite"|"ServiceWorkerClaim"|"IgnoreEventAndEvict"|"HaveInnerContents"|"TimeoutPuttingInCache"|"BackForwardCacheDisabledByLowMemory"|"BackForwardCacheDisabledByCommandLine"|"NetworkRequestDatapipeDrainedAsBytesConsumer"|"NetworkRequestRedirected"|"NetworkRequestTimeout"|"NetworkExceedsBufferLimit"|"NavigationCancelledWhileRestoring"|"NotMostRecentNavigationEntry"|"BackForwardCacheDisabledForPrerender"|"UserAgentOverrideDiffers"|"ForegroundCacheLimit"|"BrowsingInstanceNotSwapped"|"BackForwardCacheDisabledForDelegate"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"FencedFramesEmbedder"|"CookieDisabled"|"HTTPAuthRequired"|"CookieFlushed"|"BroadcastChannelOnMessage"|"WebViewSettingsChanged"|"WebViewJavaScriptObjectChanged"|"WebViewMessageListenerInjected"|"WebViewSafeBrowsingAllowlistChanged"|"WebViewDocumentStartJavascriptChanged"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"OutstandingNetworkRequestOthers"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"WebXR"|"SharedWorker"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"KeepaliveRequest"|"IndexedDBEvent"|"Dummy"|"JsNetworkRequestReceivedCacheControlNoStoreResource"|"WebRTCSticky"|"WebTransportSticky"|"WebSocketSticky"|"SmartCard"|"LiveMediaStreamTrack"|"UnloadHandler"|"ParserAborted"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSessionService"|"ContentScreenReader"|"ContentDiscarded"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"|"RequestedByWebViewClient"|"PostMessageByWebViewClient"|"CacheControlNoStoreDeviceBoundSessionTerminated"|"CacheLimitPrunedOnModerateMemoryPressure"|"CacheLimitPrunedOnCriticalMemoryPressure";
12794
+ export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"SchedulerTrackedFeatureUsed"|"ConflictingBrowsingInstance"|"CacheFlushed"|"ServiceWorkerVersionActivation"|"SessionRestored"|"ServiceWorkerPostMessage"|"EnteredBackForwardCacheBeforeServiceWorkerHostAdded"|"RenderFrameHostReused_SameSite"|"RenderFrameHostReused_CrossSite"|"ServiceWorkerClaim"|"IgnoreEventAndEvict"|"HaveInnerContents"|"TimeoutPuttingInCache"|"BackForwardCacheDisabledByLowMemory"|"BackForwardCacheDisabledByCommandLine"|"NetworkRequestDatapipeDrainedAsBytesConsumer"|"NetworkRequestRedirected"|"NetworkRequestTimeout"|"NetworkExceedsBufferLimit"|"NavigationCancelledWhileRestoring"|"NotMostRecentNavigationEntry"|"BackForwardCacheDisabledForPrerender"|"UserAgentOverrideDiffers"|"ForegroundCacheLimit"|"BrowsingInstanceNotSwapped"|"BackForwardCacheDisabledForDelegate"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"FencedFramesEmbedder"|"CookieDisabled"|"HTTPAuthRequired"|"CookieFlushed"|"BroadcastChannelOnMessage"|"WebViewSettingsChanged"|"WebViewJavaScriptObjectChanged"|"WebViewMessageListenerInjected"|"WebViewSafeBrowsingAllowlistChanged"|"WebViewDocumentStartJavascriptChanged"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"OutstandingNetworkRequestOthers"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"WebXR"|"SharedWorker"|"SharedWorkerMessage"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"KeepaliveRequest"|"IndexedDBEvent"|"Dummy"|"JsNetworkRequestReceivedCacheControlNoStoreResource"|"WebRTCSticky"|"WebTransportSticky"|"WebSocketSticky"|"SmartCard"|"LiveMediaStreamTrack"|"UnloadHandler"|"ParserAborted"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSessionService"|"ContentScreenReader"|"ContentDiscarded"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"|"RequestedByWebViewClient"|"PostMessageByWebViewClient"|"CacheControlNoStoreDeviceBoundSessionTerminated"|"CacheLimitPrunedOnModerateMemoryPressure"|"CacheLimitPrunedOnCriticalMemoryPressure";
12714
12795
  /**
12715
12796
  * Types of not restored reasons for back-forward cache.
12716
12797
  */
@@ -13151,8 +13232,7 @@ etc.
13151
13232
  userGesture: boolean;
13152
13233
  }
13153
13234
  /**
13154
- * Issued for every compilation cache generated. Is only available
13155
- if Page.setGenerateCompilationCache is enabled.
13235
+ * Issued for every compilation cache generated.
13156
13236
  */
13157
13237
  export type compilationCacheProducedPayload = {
13158
13238
  url: string;
@@ -13560,6 +13640,10 @@ as the previously committed loaderId would not change.
13560
13640
  * User friendly error message, present if and only if navigation has failed.
13561
13641
  */
13562
13642
  errorText?: string;
13643
+ /**
13644
+ * Whether the navigation resulted in a download.
13645
+ */
13646
+ isDownload?: boolean;
13563
13647
  }
13564
13648
  /**
13565
13649
  * Navigates current page to the given history entry.
@@ -14704,11 +14788,6 @@ For cached script it is the last time the cache entry was validated.
14704
14788
  }
14705
14789
  export type enableReturnValue = {
14706
14790
  }
14707
- export type inspectWorkerParameters = {
14708
- versionId: string;
14709
- }
14710
- export type inspectWorkerReturnValue = {
14711
- }
14712
14791
  export type setForceUpdateOnPageLoadParameters = {
14713
14792
  forceUpdateOnPageLoad: boolean;
14714
14793
  }
@@ -16532,6 +16611,21 @@ to run paused targets.
16532
16611
  }
16533
16612
  export type setRemoteLocationsReturnValue = {
16534
16613
  }
16614
+ /**
16615
+ * Opens a DevTools window for the target.
16616
+ */
16617
+ export type openDevToolsParameters = {
16618
+ /**
16619
+ * This can be the page or tab target ID.
16620
+ */
16621
+ targetId: TargetID;
16622
+ }
16623
+ export type openDevToolsReturnValue = {
16624
+ /**
16625
+ * The targetId of DevTools page target.
16626
+ */
16627
+ targetId: TargetID;
16628
+ }
16535
16629
  }
16536
16630
 
16537
16631
  /**
@@ -17941,7 +18035,7 @@ See also:
17941
18035
  */
17942
18036
  errorMessage?: string;
17943
18037
  }
17944
- export type RuleSetErrorType = "SourceIsNotJsonObject"|"InvalidRulesSkipped";
18038
+ export type RuleSetErrorType = "SourceIsNotJsonObject"|"InvalidRulesSkipped"|"InvalidRulesetLevelTag";
17945
18039
  /**
17946
18040
  * The type of preloading attempted. It corresponds to
17947
18041
  mojom::SpeculationAction (although PrefetchWithSubresources is omitted as it
@@ -17992,7 +18086,7 @@ CDP events for them are emitted separately but they share
17992
18086
  /**
17993
18087
  * List of FinalStatus reasons for Prerender2.
17994
18088
  */
17995
- export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MojoBinderPolicy"|"RendererProcessCrashed"|"RendererProcessKilled"|"Download"|"TriggerDestroyed"|"NavigationNotCommitted"|"NavigationBadHttpStatus"|"ClientCertRequested"|"NavigationRequestNetworkError"|"CancelAllHostsForTesting"|"DidFailLoad"|"Stop"|"SslCertificateError"|"LoginAuthRequested"|"UaChangeRequiresReload"|"BlockedByClient"|"AudioOutputDeviceRequested"|"MixedContent"|"TriggerBackgrounded"|"MemoryLimitExceeded"|"DataSaverEnabled"|"TriggerUrlHasEffectiveUrl"|"ActivatedBeforeStarted"|"InactivePageRestriction"|"StartFailed"|"TimeoutBackgrounded"|"CrossSiteRedirectInInitialNavigation"|"CrossSiteNavigationInInitialNavigation"|"SameSiteCrossOriginRedirectNotOptInInInitialNavigation"|"SameSiteCrossOriginNavigationNotOptInInInitialNavigation"|"ActivationNavigationParameterMismatch"|"ActivatedInBackground"|"EmbedderHostDisallowed"|"ActivationNavigationDestroyedBeforeSuccess"|"TabClosedByUserGesture"|"TabClosedWithoutUserGesture"|"PrimaryMainFrameRendererProcessCrashed"|"PrimaryMainFrameRendererProcessKilled"|"ActivationFramePolicyNotCompatible"|"PreloadingDisabled"|"BatterySaverEnabled"|"ActivatedDuringMainFrameNavigation"|"PreloadingUnsupportedByWebContents"|"CrossSiteRedirectInMainFrameNavigation"|"CrossSiteNavigationInMainFrameNavigation"|"SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation"|"SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation"|"MemoryPressureOnTrigger"|"MemoryPressureAfterTriggered"|"PrerenderingDisabledByDevTools"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts"|"MaxNumOfRunningEagerPrerendersExceeded"|"MaxNumOfRunningNonEagerPrerendersExceeded"|"MaxNumOfRunningEmbedderPrerendersExceeded"|"PrerenderingUrlHasEffectiveUrl"|"RedirectedPrerenderingUrlHasEffectiveUrl"|"ActivationUrlHasEffectiveUrl"|"JavaScriptInterfaceAdded"|"JavaScriptInterfaceRemoved"|"AllPrerenderingCanceled"|"WindowClosed"|"SlowNetwork"|"OtherPrerenderedPageActivated"|"V8OptimizerDisabled"|"PrerenderFailedDuringPrefetch"|"BrowsingDataRemoved";
18089
+ export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MojoBinderPolicy"|"RendererProcessCrashed"|"RendererProcessKilled"|"Download"|"TriggerDestroyed"|"NavigationNotCommitted"|"NavigationBadHttpStatus"|"ClientCertRequested"|"NavigationRequestNetworkError"|"CancelAllHostsForTesting"|"DidFailLoad"|"Stop"|"SslCertificateError"|"LoginAuthRequested"|"UaChangeRequiresReload"|"BlockedByClient"|"AudioOutputDeviceRequested"|"MixedContent"|"TriggerBackgrounded"|"MemoryLimitExceeded"|"DataSaverEnabled"|"TriggerUrlHasEffectiveUrl"|"ActivatedBeforeStarted"|"InactivePageRestriction"|"StartFailed"|"TimeoutBackgrounded"|"CrossSiteRedirectInInitialNavigation"|"CrossSiteNavigationInInitialNavigation"|"SameSiteCrossOriginRedirectNotOptInInInitialNavigation"|"SameSiteCrossOriginNavigationNotOptInInInitialNavigation"|"ActivationNavigationParameterMismatch"|"ActivatedInBackground"|"EmbedderHostDisallowed"|"ActivationNavigationDestroyedBeforeSuccess"|"TabClosedByUserGesture"|"TabClosedWithoutUserGesture"|"PrimaryMainFrameRendererProcessCrashed"|"PrimaryMainFrameRendererProcessKilled"|"ActivationFramePolicyNotCompatible"|"PreloadingDisabled"|"BatterySaverEnabled"|"ActivatedDuringMainFrameNavigation"|"PreloadingUnsupportedByWebContents"|"CrossSiteRedirectInMainFrameNavigation"|"CrossSiteNavigationInMainFrameNavigation"|"SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation"|"SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation"|"MemoryPressureOnTrigger"|"MemoryPressureAfterTriggered"|"PrerenderingDisabledByDevTools"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts"|"MaxNumOfRunningEagerPrerendersExceeded"|"MaxNumOfRunningNonEagerPrerendersExceeded"|"MaxNumOfRunningEmbedderPrerendersExceeded"|"PrerenderingUrlHasEffectiveUrl"|"RedirectedPrerenderingUrlHasEffectiveUrl"|"ActivationUrlHasEffectiveUrl"|"JavaScriptInterfaceAdded"|"JavaScriptInterfaceRemoved"|"AllPrerenderingCanceled"|"WindowClosed"|"SlowNetwork"|"OtherPrerenderedPageActivated"|"V8OptimizerDisabled"|"PrerenderFailedDuringPrefetch"|"BrowsingDataRemoved"|"PrerenderHostReused";
17996
18090
  /**
17997
18091
  * Preloading status values, see also PreloadingTriggeringOutcome. This
17998
18092
  status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
@@ -21596,6 +21690,7 @@ Error was thrown.
21596
21690
  "Browser.getWindowBounds": Browser.getWindowBoundsParameters;
21597
21691
  "Browser.getWindowForTarget": Browser.getWindowForTargetParameters;
21598
21692
  "Browser.setWindowBounds": Browser.setWindowBoundsParameters;
21693
+ "Browser.setContentsSize": Browser.setContentsSizeParameters;
21599
21694
  "Browser.setDockTile": Browser.setDockTileParameters;
21600
21695
  "Browser.executeBrowserCommand": Browser.executeBrowserCommandParameters;
21601
21696
  "Browser.addPrivacySandboxEnrollmentOverride": Browser.addPrivacySandboxEnrollmentOverrideParameters;
@@ -21614,6 +21709,7 @@ Error was thrown.
21614
21709
  "CSS.getInlineStylesForNode": CSS.getInlineStylesForNodeParameters;
21615
21710
  "CSS.getAnimatedStylesForNode": CSS.getAnimatedStylesForNodeParameters;
21616
21711
  "CSS.getMatchedStylesForNode": CSS.getMatchedStylesForNodeParameters;
21712
+ "CSS.getEnvironmentVariables": CSS.getEnvironmentVariablesParameters;
21617
21713
  "CSS.getMediaQueries": CSS.getMediaQueriesParameters;
21618
21714
  "CSS.getPlatformFontsForNode": CSS.getPlatformFontsForNodeParameters;
21619
21715
  "CSS.getStyleSheetText": CSS.getStyleSheetTextParameters;
@@ -21699,6 +21795,7 @@ Error was thrown.
21699
21795
  "DOM.getContainerForNode": DOM.getContainerForNodeParameters;
21700
21796
  "DOM.getQueryingDescendantsForContainer": DOM.getQueryingDescendantsForContainerParameters;
21701
21797
  "DOM.getAnchorElement": DOM.getAnchorElementParameters;
21798
+ "DOM.forceShowPopover": DOM.forceShowPopoverParameters;
21702
21799
  "DOMDebugger.getEventListeners": DOMDebugger.getEventListenersParameters;
21703
21800
  "DOMDebugger.removeDOMBreakpoint": DOMDebugger.removeDOMBreakpointParameters;
21704
21801
  "DOMDebugger.removeEventListenerBreakpoint": DOMDebugger.removeEventListenerBreakpointParameters;
@@ -21762,6 +21859,7 @@ Error was thrown.
21762
21859
  "Emulation.setTimezoneOverride": Emulation.setTimezoneOverrideParameters;
21763
21860
  "Emulation.setVisibleSize": Emulation.setVisibleSizeParameters;
21764
21861
  "Emulation.setDisabledImageTypes": Emulation.setDisabledImageTypesParameters;
21862
+ "Emulation.setDataSaverOverride": Emulation.setDataSaverOverrideParameters;
21765
21863
  "Emulation.setHardwareConcurrencyOverride": Emulation.setHardwareConcurrencyOverrideParameters;
21766
21864
  "Emulation.setUserAgentOverride": Emulation.setUserAgentOverrideParameters;
21767
21865
  "Emulation.setAutomationOverride": Emulation.setAutomationOverrideParameters;
@@ -21961,7 +22059,6 @@ Error was thrown.
21961
22059
  "ServiceWorker.dispatchSyncEvent": ServiceWorker.dispatchSyncEventParameters;
21962
22060
  "ServiceWorker.dispatchPeriodicSyncEvent": ServiceWorker.dispatchPeriodicSyncEventParameters;
21963
22061
  "ServiceWorker.enable": ServiceWorker.enableParameters;
21964
- "ServiceWorker.inspectWorker": ServiceWorker.inspectWorkerParameters;
21965
22062
  "ServiceWorker.setForceUpdateOnPageLoad": ServiceWorker.setForceUpdateOnPageLoadParameters;
21966
22063
  "ServiceWorker.skipWaiting": ServiceWorker.skipWaitingParameters;
21967
22064
  "ServiceWorker.startWorker": ServiceWorker.startWorkerParameters;
@@ -22026,6 +22123,7 @@ Error was thrown.
22026
22123
  "Target.autoAttachRelated": Target.autoAttachRelatedParameters;
22027
22124
  "Target.setDiscoverTargets": Target.setDiscoverTargetsParameters;
22028
22125
  "Target.setRemoteLocations": Target.setRemoteLocationsParameters;
22126
+ "Target.openDevTools": Target.openDevToolsParameters;
22029
22127
  "Tethering.bind": Tethering.bindParameters;
22030
22128
  "Tethering.unbind": Tethering.unbindParameters;
22031
22129
  "Tracing.end": Tracing.endParameters;
@@ -22230,6 +22328,7 @@ Error was thrown.
22230
22328
  "Browser.getWindowBounds": Browser.getWindowBoundsReturnValue;
22231
22329
  "Browser.getWindowForTarget": Browser.getWindowForTargetReturnValue;
22232
22330
  "Browser.setWindowBounds": Browser.setWindowBoundsReturnValue;
22331
+ "Browser.setContentsSize": Browser.setContentsSizeReturnValue;
22233
22332
  "Browser.setDockTile": Browser.setDockTileReturnValue;
22234
22333
  "Browser.executeBrowserCommand": Browser.executeBrowserCommandReturnValue;
22235
22334
  "Browser.addPrivacySandboxEnrollmentOverride": Browser.addPrivacySandboxEnrollmentOverrideReturnValue;
@@ -22248,6 +22347,7 @@ Error was thrown.
22248
22347
  "CSS.getInlineStylesForNode": CSS.getInlineStylesForNodeReturnValue;
22249
22348
  "CSS.getAnimatedStylesForNode": CSS.getAnimatedStylesForNodeReturnValue;
22250
22349
  "CSS.getMatchedStylesForNode": CSS.getMatchedStylesForNodeReturnValue;
22350
+ "CSS.getEnvironmentVariables": CSS.getEnvironmentVariablesReturnValue;
22251
22351
  "CSS.getMediaQueries": CSS.getMediaQueriesReturnValue;
22252
22352
  "CSS.getPlatformFontsForNode": CSS.getPlatformFontsForNodeReturnValue;
22253
22353
  "CSS.getStyleSheetText": CSS.getStyleSheetTextReturnValue;
@@ -22333,6 +22433,7 @@ Error was thrown.
22333
22433
  "DOM.getContainerForNode": DOM.getContainerForNodeReturnValue;
22334
22434
  "DOM.getQueryingDescendantsForContainer": DOM.getQueryingDescendantsForContainerReturnValue;
22335
22435
  "DOM.getAnchorElement": DOM.getAnchorElementReturnValue;
22436
+ "DOM.forceShowPopover": DOM.forceShowPopoverReturnValue;
22336
22437
  "DOMDebugger.getEventListeners": DOMDebugger.getEventListenersReturnValue;
22337
22438
  "DOMDebugger.removeDOMBreakpoint": DOMDebugger.removeDOMBreakpointReturnValue;
22338
22439
  "DOMDebugger.removeEventListenerBreakpoint": DOMDebugger.removeEventListenerBreakpointReturnValue;
@@ -22396,6 +22497,7 @@ Error was thrown.
22396
22497
  "Emulation.setTimezoneOverride": Emulation.setTimezoneOverrideReturnValue;
22397
22498
  "Emulation.setVisibleSize": Emulation.setVisibleSizeReturnValue;
22398
22499
  "Emulation.setDisabledImageTypes": Emulation.setDisabledImageTypesReturnValue;
22500
+ "Emulation.setDataSaverOverride": Emulation.setDataSaverOverrideReturnValue;
22399
22501
  "Emulation.setHardwareConcurrencyOverride": Emulation.setHardwareConcurrencyOverrideReturnValue;
22400
22502
  "Emulation.setUserAgentOverride": Emulation.setUserAgentOverrideReturnValue;
22401
22503
  "Emulation.setAutomationOverride": Emulation.setAutomationOverrideReturnValue;
@@ -22595,7 +22697,6 @@ Error was thrown.
22595
22697
  "ServiceWorker.dispatchSyncEvent": ServiceWorker.dispatchSyncEventReturnValue;
22596
22698
  "ServiceWorker.dispatchPeriodicSyncEvent": ServiceWorker.dispatchPeriodicSyncEventReturnValue;
22597
22699
  "ServiceWorker.enable": ServiceWorker.enableReturnValue;
22598
- "ServiceWorker.inspectWorker": ServiceWorker.inspectWorkerReturnValue;
22599
22700
  "ServiceWorker.setForceUpdateOnPageLoad": ServiceWorker.setForceUpdateOnPageLoadReturnValue;
22600
22701
  "ServiceWorker.skipWaiting": ServiceWorker.skipWaitingReturnValue;
22601
22702
  "ServiceWorker.startWorker": ServiceWorker.startWorkerReturnValue;
@@ -22660,6 +22761,7 @@ Error was thrown.
22660
22761
  "Target.autoAttachRelated": Target.autoAttachRelatedReturnValue;
22661
22762
  "Target.setDiscoverTargets": Target.setDiscoverTargetsReturnValue;
22662
22763
  "Target.setRemoteLocations": Target.setRemoteLocationsReturnValue;
22764
+ "Target.openDevTools": Target.openDevToolsReturnValue;
22663
22765
  "Tethering.bind": Tethering.bindReturnValue;
22664
22766
  "Tethering.unbind": Tethering.unbindReturnValue;
22665
22767
  "Tracing.end": Tracing.endReturnValue;