mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(chromium): roll to r1084 (#27497)
This commit is contained in:
parent
b807c974c3
commit
9062dd0139
@ -1,6 +1,6 @@
|
||||
# 🎭 Playwright
|
||||
|
||||
[](https://www.npmjs.com/package/playwright) <!-- 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) <!-- 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)
|
||||
|
||||
@ -8,7 +8,7 @@ Playwright is a framework for Web Testing and Automation. It allows testing [Chr
|
||||
|
||||
| | Linux | macOS | Windows |
|
||||
| :--- | :---: | :---: | :---: |
|
||||
| Chromium <!-- GEN:chromium-version -->118.0.5993.32<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Chromium <!-- GEN:chromium-version -->119.0.6045.9<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| WebKit <!-- GEN:webkit-version -->17.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Firefox <!-- GEN:firefox-version -->118.0.1<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
|
||||
|
||||
@ -3,15 +3,15 @@
|
||||
"browsers": [
|
||||
{
|
||||
"name": "chromium",
|
||||
"revision": "1083",
|
||||
"revision": "1084",
|
||||
"installByDefault": true,
|
||||
"browserVersion": "118.0.5993.32"
|
||||
"browserVersion": "119.0.6045.9"
|
||||
},
|
||||
{
|
||||
"name": "chromium-with-symbols",
|
||||
"revision": "1083",
|
||||
"revision": "1084",
|
||||
"installByDefault": false,
|
||||
"browserVersion": "118.0.5993.32"
|
||||
"browserVersion": "119.0.6045.9"
|
||||
},
|
||||
{
|
||||
"name": "chromium-tip-of-tree",
|
||||
|
||||
@ -915,12 +915,31 @@ features, encourage the use of new ones, and provide general guidance.
|
||||
*/
|
||||
failedRequestInfo?: FailedRequestInfo;
|
||||
}
|
||||
export type PropertyRuleIssueReason = "InvalidSyntax"|"InvalidInitialValue"|"InvalidInherits"|"InvalidName";
|
||||
/**
|
||||
* This issue warns about errors in property rules that lead to property
|
||||
registrations being ignored.
|
||||
*/
|
||||
export interface PropertyRuleIssueDetails {
|
||||
/**
|
||||
* Source code position of the property rule.
|
||||
*/
|
||||
sourceCodeLocation: SourceCodeLocation;
|
||||
/**
|
||||
* Reason why the property rule was discarded.
|
||||
*/
|
||||
propertyRuleIssueReason: PropertyRuleIssueReason;
|
||||
/**
|
||||
* The value of the property rule property that failed to parse
|
||||
*/
|
||||
propertyValue?: string;
|
||||
}
|
||||
/**
|
||||
* A unique identifier for the type of issue. Each type may use one of the
|
||||
optional fields in InspectorIssueDetails to convey more specific
|
||||
information about the kind of issue.
|
||||
*/
|
||||
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue";
|
||||
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue";
|
||||
/**
|
||||
* This struct holds a list of optional fields with additional information
|
||||
specific to the kind of issue. When adding a new issue code, please also
|
||||
@ -944,6 +963,7 @@ add a new optional field to this type.
|
||||
federatedAuthRequestIssueDetails?: FederatedAuthRequestIssueDetails;
|
||||
bounceTrackingIssueDetails?: BounceTrackingIssueDetails;
|
||||
stylesheetLoadingIssueDetails?: StylesheetLoadingIssueDetails;
|
||||
propertyRuleIssueDetails?: PropertyRuleIssueDetails;
|
||||
federatedAuthUserInfoRequestIssueDetails?: FederatedAuthUserInfoRequestIssueDetails;
|
||||
}
|
||||
/**
|
||||
@ -2806,6 +2826,20 @@ property
|
||||
}
|
||||
export type setEffectivePropertyValueForNodeReturnValue = {
|
||||
}
|
||||
/**
|
||||
* Modifies the property rule property name.
|
||||
*/
|
||||
export type setPropertyRulePropertyNameParameters = {
|
||||
styleSheetId: StyleSheetId;
|
||||
range: SourceRange;
|
||||
propertyName: string;
|
||||
}
|
||||
export type setPropertyRulePropertyNameReturnValue = {
|
||||
/**
|
||||
* The resulting key text after modification.
|
||||
*/
|
||||
propertyName: Value;
|
||||
}
|
||||
/**
|
||||
* Modifies the keyframe rule key text.
|
||||
*/
|
||||
@ -8306,11 +8340,11 @@ of the request to the endpoint that set the cookie.
|
||||
/**
|
||||
* Types of reasons why a cookie may not be stored from a response.
|
||||
*/
|
||||
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyBlockedInFirstPartySet"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"SamePartyConflictsWithOtherAttributes"|"NameValuePairExceedsMaxSize"|"DisallowedCharacter";
|
||||
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"SamePartyConflictsWithOtherAttributes"|"NameValuePairExceedsMaxSize"|"DisallowedCharacter"|"NoCookieContent";
|
||||
/**
|
||||
* Types of reasons why a cookie may not be sent with a request.
|
||||
*/
|
||||
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"NameValuePairExceedsMaxSize";
|
||||
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"NameValuePairExceedsMaxSize";
|
||||
/**
|
||||
* A cookie which was not stored from a response with the corresponding reason.
|
||||
*/
|
||||
@ -13195,12 +13229,12 @@ Tokens from that issuer.
|
||||
/**
|
||||
* Enum of interest group access types.
|
||||
*/
|
||||
export type InterestGroupAccessType = "join"|"leave"|"update"|"loaded"|"bid"|"win";
|
||||
export type InterestGroupAccessType = "join"|"leave"|"update"|"loaded"|"bid"|"win"|"additionalBid"|"additionalBidWin"|"clear";
|
||||
/**
|
||||
* Ad advertising element inside an interest group.
|
||||
*/
|
||||
export interface InterestGroupAd {
|
||||
renderUrl: string;
|
||||
renderURL: string;
|
||||
metadata?: string;
|
||||
}
|
||||
/**
|
||||
@ -13211,10 +13245,10 @@ Tokens from that issuer.
|
||||
name: string;
|
||||
expirationTime: Network.TimeSinceEpoch;
|
||||
joiningOrigin: string;
|
||||
biddingUrl?: string;
|
||||
biddingWasmHelperUrl?: string;
|
||||
updateUrl?: string;
|
||||
trustedBiddingSignalsUrl?: string;
|
||||
biddingLogicURL?: string;
|
||||
biddingWasmHelperURL?: string;
|
||||
updateURL?: string;
|
||||
trustedBiddingSignalsURL?: string;
|
||||
trustedBiddingSignalsKeys: string[];
|
||||
userBiddingSignals?: string;
|
||||
ads: InterestGroupAd[];
|
||||
@ -15928,7 +15962,7 @@ possible for mulitple rule sets and links to trigger a single attempt.
|
||||
/**
|
||||
* List of FinalStatus reasons for Prerender2.
|
||||
*/
|
||||
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"InProgressNavigation"|"NavigationRequestBlockedByCsp"|"MainFrameNavigation"|"MojoBinderPolicy"|"RendererProcessCrashed"|"RendererProcessKilled"|"Download"|"TriggerDestroyed"|"NavigationNotCommitted"|"NavigationBadHttpStatus"|"ClientCertRequested"|"NavigationRequestNetworkError"|"MaxNumOfRunningPrerendersExceeded"|"CancelAllHostsForTesting"|"DidFailLoad"|"Stop"|"SslCertificateError"|"LoginAuthRequested"|"UaChangeRequiresReload"|"BlockedByClient"|"AudioOutputDeviceRequested"|"MixedContent"|"TriggerBackgrounded"|"MemoryLimitExceeded"|"FailToGetMemoryUsage"|"DataSaverEnabled"|"HasEffectiveUrl"|"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"|"ResourceLoadBlockedByClient"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts";
|
||||
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MainFrameNavigation"|"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"|"ResourceLoadBlockedByClient"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts"|"MaxNumOfRunningEagerPrerendersExceeded"|"MaxNumOfRunningNonEagerPrerendersExceeded"|"MaxNumOfRunningEmbedderPrerendersExceeded"|"PrerenderingUrlHasEffectiveUrl"|"RedirectedPrerenderingUrlHasEffectiveUrl"|"ActivationUrlHasEffectiveUrl";
|
||||
/**
|
||||
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
||||
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
||||
@ -15949,23 +15983,6 @@ filter out the ones that aren't necessary to the developers.
|
||||
export type ruleSetRemovedPayload = {
|
||||
id: RuleSetId;
|
||||
}
|
||||
/**
|
||||
* Fired when a prerender attempt is completed.
|
||||
*/
|
||||
export type prerenderAttemptCompletedPayload = {
|
||||
key: PreloadingAttemptKey;
|
||||
/**
|
||||
* The frame id of the frame initiating prerendering.
|
||||
*/
|
||||
initiatingFrameId: Page.FrameId;
|
||||
prerenderingUrl: string;
|
||||
finalStatus: PrerenderFinalStatus;
|
||||
/**
|
||||
* This is used to give users more information about the name of the API call
|
||||
that is incompatible with prerender and has caused the cancellation of the attempt
|
||||
*/
|
||||
disallowedApiMethod?: string;
|
||||
}
|
||||
/**
|
||||
* Fired when a preload enabled state is updated.
|
||||
*/
|
||||
@ -16033,7 +16050,7 @@ whether this account has ever been used to sign in to this RP before.
|
||||
/**
|
||||
* Whether the dialog shown is an account chooser or an auto re-authentication dialog.
|
||||
*/
|
||||
export type DialogType = "AccountChooser"|"AutoReauthn"|"ConfirmIdpSignin";
|
||||
export type DialogType = "AccountChooser"|"AutoReauthn"|"ConfirmIdpLogin";
|
||||
/**
|
||||
* Corresponds to IdentityRequestAccount
|
||||
*/
|
||||
@ -16044,7 +16061,7 @@ whether this account has ever been used to sign in to this RP before.
|
||||
givenName: string;
|
||||
pictureUrl: string;
|
||||
idpConfigUrl: string;
|
||||
idpSigninUrl: string;
|
||||
idpLoginUrl: string;
|
||||
loginState: LoginState;
|
||||
/**
|
||||
* These two are only set if the loginState is signUp
|
||||
@ -16086,13 +16103,13 @@ normally happen, if this is unimportant to what's being tested.
|
||||
export type selectAccountReturnValue = {
|
||||
}
|
||||
/**
|
||||
* Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had
|
||||
* Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
|
||||
clicked the continue button.
|
||||
*/
|
||||
export type confirmIdpSigninParameters = {
|
||||
export type confirmIdpLoginParameters = {
|
||||
dialogId: string;
|
||||
}
|
||||
export type confirmIdpSigninReturnValue = {
|
||||
export type confirmIdpLoginReturnValue = {
|
||||
}
|
||||
export type dismissDialogParameters = {
|
||||
dialogId: string;
|
||||
@ -17668,8 +17685,7 @@ other objects in their object group.
|
||||
*/
|
||||
export type ScriptId = string;
|
||||
/**
|
||||
* Represents options for serialization. Overrides `generatePreview`, `returnByValue` and
|
||||
`generateWebDriverValue`.
|
||||
* Represents options for serialization. Overrides `generatePreview` and `returnByValue`.
|
||||
*/
|
||||
export interface SerializationOptions {
|
||||
serialization: "deep"|"json"|"idOnly";
|
||||
@ -17688,7 +17704,7 @@ Values can be only of type string or integer.
|
||||
* Represents deep serialized value.
|
||||
*/
|
||||
export interface DeepSerializedValue {
|
||||
type: "undefined"|"null"|"string"|"number"|"boolean"|"bigint"|"regexp"|"date"|"symbol"|"array"|"object"|"function"|"map"|"set"|"weakmap"|"weakset"|"error"|"proxy"|"promise"|"typedarray"|"arraybuffer"|"node"|"window";
|
||||
type: "undefined"|"null"|"string"|"number"|"boolean"|"bigint"|"regexp"|"date"|"symbol"|"array"|"object"|"function"|"map"|"set"|"weakmap"|"weakset"|"error"|"proxy"|"promise"|"typedarray"|"arraybuffer"|"node"|"window"|"generator";
|
||||
value?: any;
|
||||
objectId?: string;
|
||||
/**
|
||||
@ -17738,10 +17754,6 @@ property.
|
||||
* String representation of the object.
|
||||
*/
|
||||
description?: string;
|
||||
/**
|
||||
* Deprecated. Use `deepSerializedValue` instead. WebDriver BiDi representation of the value.
|
||||
*/
|
||||
webDriverValue?: DeepSerializedValue;
|
||||
/**
|
||||
* Deep serialized value.
|
||||
*/
|
||||
@ -18279,16 +18291,9 @@ boundaries).
|
||||
This is mutually exclusive with `executionContextId`.
|
||||
*/
|
||||
uniqueContextId?: string;
|
||||
/**
|
||||
* Deprecated. Use `serializationOptions: {serialization:"deep"}` instead.
|
||||
Whether the result should contain `webDriverValue`, serialized according to
|
||||
https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
|
||||
resulting `objectId` is still provided.
|
||||
*/
|
||||
generateWebDriverValue?: boolean;
|
||||
/**
|
||||
* Specifies the result serialization. If provided, overrides
|
||||
`generatePreview`, `returnByValue` and `generateWebDriverValue`.
|
||||
`generatePreview` and `returnByValue`.
|
||||
*/
|
||||
serializationOptions?: SerializationOptions;
|
||||
}
|
||||
@ -18438,17 +18443,9 @@ boundaries).
|
||||
This is mutually exclusive with `contextId`.
|
||||
*/
|
||||
uniqueContextId?: string;
|
||||
/**
|
||||
* Deprecated. Use `serializationOptions: {serialization:"deep"}` instead.
|
||||
Whether the result should contain `webDriverValue`, serialized
|
||||
according to
|
||||
https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
|
||||
resulting `objectId` is still provided.
|
||||
*/
|
||||
generateWebDriverValue?: boolean;
|
||||
/**
|
||||
* Specifies the result serialization. If provided, overrides
|
||||
`generatePreview`, `returnByValue` and `generateWebDriverValue`.
|
||||
`generatePreview` and `returnByValue`.
|
||||
*/
|
||||
serializationOptions?: SerializationOptions;
|
||||
}
|
||||
@ -18922,7 +18919,6 @@ Error was thrown.
|
||||
"DeviceAccess.deviceRequestPrompted": DeviceAccess.deviceRequestPromptedPayload;
|
||||
"Preload.ruleSetUpdated": Preload.ruleSetUpdatedPayload;
|
||||
"Preload.ruleSetRemoved": Preload.ruleSetRemovedPayload;
|
||||
"Preload.prerenderAttemptCompleted": Preload.prerenderAttemptCompletedPayload;
|
||||
"Preload.preloadEnabledStateUpdated": Preload.preloadEnabledStateUpdatedPayload;
|
||||
"Preload.prefetchStatusUpdated": Preload.prefetchStatusUpdatedPayload;
|
||||
"Preload.prerenderStatusUpdated": Preload.prerenderStatusUpdatedPayload;
|
||||
@ -19018,6 +19014,7 @@ Error was thrown.
|
||||
"CSS.trackComputedStyleUpdates": CSS.trackComputedStyleUpdatesParameters;
|
||||
"CSS.takeComputedStyleUpdates": CSS.takeComputedStyleUpdatesParameters;
|
||||
"CSS.setEffectivePropertyValueForNode": CSS.setEffectivePropertyValueForNodeParameters;
|
||||
"CSS.setPropertyRulePropertyName": CSS.setPropertyRulePropertyNameParameters;
|
||||
"CSS.setKeyframeKey": CSS.setKeyframeKeyParameters;
|
||||
"CSS.setMediaText": CSS.setMediaTextParameters;
|
||||
"CSS.setContainerQueryText": CSS.setContainerQueryTextParameters;
|
||||
@ -19440,7 +19437,7 @@ Error was thrown.
|
||||
"FedCm.enable": FedCm.enableParameters;
|
||||
"FedCm.disable": FedCm.disableParameters;
|
||||
"FedCm.selectAccount": FedCm.selectAccountParameters;
|
||||
"FedCm.confirmIdpSignin": FedCm.confirmIdpSigninParameters;
|
||||
"FedCm.confirmIdpLogin": FedCm.confirmIdpLoginParameters;
|
||||
"FedCm.dismissDialog": FedCm.dismissDialogParameters;
|
||||
"FedCm.resetCooldown": FedCm.resetCooldownParameters;
|
||||
"Console.clearMessages": Console.clearMessagesParameters;
|
||||
@ -19591,6 +19588,7 @@ Error was thrown.
|
||||
"CSS.trackComputedStyleUpdates": CSS.trackComputedStyleUpdatesReturnValue;
|
||||
"CSS.takeComputedStyleUpdates": CSS.takeComputedStyleUpdatesReturnValue;
|
||||
"CSS.setEffectivePropertyValueForNode": CSS.setEffectivePropertyValueForNodeReturnValue;
|
||||
"CSS.setPropertyRulePropertyName": CSS.setPropertyRulePropertyNameReturnValue;
|
||||
"CSS.setKeyframeKey": CSS.setKeyframeKeyReturnValue;
|
||||
"CSS.setMediaText": CSS.setMediaTextReturnValue;
|
||||
"CSS.setContainerQueryText": CSS.setContainerQueryTextReturnValue;
|
||||
@ -20013,7 +20011,7 @@ Error was thrown.
|
||||
"FedCm.enable": FedCm.enableReturnValue;
|
||||
"FedCm.disable": FedCm.disableReturnValue;
|
||||
"FedCm.selectAccount": FedCm.selectAccountReturnValue;
|
||||
"FedCm.confirmIdpSignin": FedCm.confirmIdpSigninReturnValue;
|
||||
"FedCm.confirmIdpLogin": FedCm.confirmIdpLoginReturnValue;
|
||||
"FedCm.dismissDialog": FedCm.dismissDialogReturnValue;
|
||||
"FedCm.resetCooldown": FedCm.resetCooldownReturnValue;
|
||||
"Console.clearMessages": Console.clearMessagesReturnValue;
|
||||
|
||||
@ -110,7 +110,7 @@
|
||||
"defaultBrowserType": "webkit"
|
||||
},
|
||||
"Galaxy S5": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 360,
|
||||
"height": 640
|
||||
@ -121,7 +121,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Galaxy S5 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 640,
|
||||
"height": 360
|
||||
@ -132,7 +132,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Galaxy S8": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 360,
|
||||
"height": 740
|
||||
@ -143,7 +143,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Galaxy S8 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 740,
|
||||
"height": 360
|
||||
@ -154,7 +154,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Galaxy S9+": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 320,
|
||||
"height": 658
|
||||
@ -165,7 +165,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Galaxy S9+ landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 658,
|
||||
"height": 320
|
||||
@ -176,7 +176,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Galaxy Tab S4": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 712,
|
||||
"height": 1138
|
||||
@ -187,7 +187,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Galaxy Tab S4 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 1138,
|
||||
"height": 712
|
||||
@ -978,7 +978,7 @@
|
||||
"defaultBrowserType": "webkit"
|
||||
},
|
||||
"LG Optimus L70": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 384,
|
||||
"height": 640
|
||||
@ -989,7 +989,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"LG Optimus L70 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 640,
|
||||
"height": 384
|
||||
@ -1000,7 +1000,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Microsoft Lumia 550": {
|
||||
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36 Edge/14.14263",
|
||||
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36 Edge/14.14263",
|
||||
"viewport": {
|
||||
"width": 640,
|
||||
"height": 360
|
||||
@ -1011,7 +1011,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Microsoft Lumia 550 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36 Edge/14.14263",
|
||||
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36 Edge/14.14263",
|
||||
"viewport": {
|
||||
"width": 360,
|
||||
"height": 640
|
||||
@ -1022,7 +1022,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Microsoft Lumia 950": {
|
||||
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36 Edge/14.14263",
|
||||
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36 Edge/14.14263",
|
||||
"viewport": {
|
||||
"width": 360,
|
||||
"height": 640
|
||||
@ -1033,7 +1033,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Microsoft Lumia 950 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36 Edge/14.14263",
|
||||
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36 Edge/14.14263",
|
||||
"viewport": {
|
||||
"width": 640,
|
||||
"height": 360
|
||||
@ -1044,7 +1044,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 10": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 800,
|
||||
"height": 1280
|
||||
@ -1055,7 +1055,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 10 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 1280,
|
||||
"height": 800
|
||||
@ -1066,7 +1066,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 4": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 384,
|
||||
"height": 640
|
||||
@ -1077,7 +1077,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 4 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 640,
|
||||
"height": 384
|
||||
@ -1088,7 +1088,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 5": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 360,
|
||||
"height": 640
|
||||
@ -1099,7 +1099,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 5 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 640,
|
||||
"height": 360
|
||||
@ -1110,7 +1110,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 5X": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 412,
|
||||
"height": 732
|
||||
@ -1121,7 +1121,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 5X landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 732,
|
||||
"height": 412
|
||||
@ -1132,7 +1132,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 6": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 412,
|
||||
"height": 732
|
||||
@ -1143,7 +1143,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 6 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 732,
|
||||
"height": 412
|
||||
@ -1154,7 +1154,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 6P": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 412,
|
||||
"height": 732
|
||||
@ -1165,7 +1165,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 6P landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 732,
|
||||
"height": 412
|
||||
@ -1176,7 +1176,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 7": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 600,
|
||||
"height": 960
|
||||
@ -1187,7 +1187,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Nexus 7 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 960,
|
||||
"height": 600
|
||||
@ -1242,7 +1242,7 @@
|
||||
"defaultBrowserType": "webkit"
|
||||
},
|
||||
"Pixel 2": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 411,
|
||||
"height": 731
|
||||
@ -1253,7 +1253,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 2 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 731,
|
||||
"height": 411
|
||||
@ -1264,7 +1264,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 2 XL": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 411,
|
||||
"height": 823
|
||||
@ -1275,7 +1275,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 2 XL landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 823,
|
||||
"height": 411
|
||||
@ -1286,7 +1286,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 3": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 393,
|
||||
"height": 786
|
||||
@ -1297,7 +1297,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 3 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 786,
|
||||
"height": 393
|
||||
@ -1308,7 +1308,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 4": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 353,
|
||||
"height": 745
|
||||
@ -1319,7 +1319,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 4 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 745,
|
||||
"height": 353
|
||||
@ -1330,7 +1330,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 4a (5G)": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"screen": {
|
||||
"width": 412,
|
||||
"height": 892
|
||||
@ -1345,7 +1345,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 4a (5G) landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"screen": {
|
||||
"height": 892,
|
||||
"width": 412
|
||||
@ -1360,7 +1360,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 5": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"screen": {
|
||||
"width": 393,
|
||||
"height": 851
|
||||
@ -1375,7 +1375,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Pixel 5 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"screen": {
|
||||
"width": 851,
|
||||
"height": 393
|
||||
@ -1390,7 +1390,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Moto G4": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 360,
|
||||
"height": 640
|
||||
@ -1401,7 +1401,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Moto G4 landscape": {
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Mobile Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Mobile Safari/537.36",
|
||||
"viewport": {
|
||||
"width": 640,
|
||||
"height": 360
|
||||
@ -1412,7 +1412,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Desktop Chrome HiDPI": {
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36",
|
||||
"screen": {
|
||||
"width": 1792,
|
||||
"height": 1120
|
||||
@ -1427,7 +1427,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Desktop Edge HiDPI": {
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36 Edg/118.0.5993.32",
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36 Edg/119.0.6045.9",
|
||||
"screen": {
|
||||
"width": 1792,
|
||||
"height": 1120
|
||||
@ -1472,7 +1472,7 @@
|
||||
"defaultBrowserType": "webkit"
|
||||
},
|
||||
"Desktop Chrome": {
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36",
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36",
|
||||
"screen": {
|
||||
"width": 1920,
|
||||
"height": 1080
|
||||
@ -1487,7 +1487,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Desktop Edge": {
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.32 Safari/537.36 Edg/118.0.5993.32",
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.9 Safari/537.36 Edg/119.0.6045.9",
|
||||
"screen": {
|
||||
"width": 1920,
|
||||
"height": 1080
|
||||
|
||||
116
packages/playwright-core/types/protocol.d.ts
vendored
116
packages/playwright-core/types/protocol.d.ts
vendored
@ -915,12 +915,31 @@ features, encourage the use of new ones, and provide general guidance.
|
||||
*/
|
||||
failedRequestInfo?: FailedRequestInfo;
|
||||
}
|
||||
export type PropertyRuleIssueReason = "InvalidSyntax"|"InvalidInitialValue"|"InvalidInherits"|"InvalidName";
|
||||
/**
|
||||
* This issue warns about errors in property rules that lead to property
|
||||
registrations being ignored.
|
||||
*/
|
||||
export interface PropertyRuleIssueDetails {
|
||||
/**
|
||||
* Source code position of the property rule.
|
||||
*/
|
||||
sourceCodeLocation: SourceCodeLocation;
|
||||
/**
|
||||
* Reason why the property rule was discarded.
|
||||
*/
|
||||
propertyRuleIssueReason: PropertyRuleIssueReason;
|
||||
/**
|
||||
* The value of the property rule property that failed to parse
|
||||
*/
|
||||
propertyValue?: string;
|
||||
}
|
||||
/**
|
||||
* A unique identifier for the type of issue. Each type may use one of the
|
||||
optional fields in InspectorIssueDetails to convey more specific
|
||||
information about the kind of issue.
|
||||
*/
|
||||
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue";
|
||||
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue";
|
||||
/**
|
||||
* This struct holds a list of optional fields with additional information
|
||||
specific to the kind of issue. When adding a new issue code, please also
|
||||
@ -944,6 +963,7 @@ add a new optional field to this type.
|
||||
federatedAuthRequestIssueDetails?: FederatedAuthRequestIssueDetails;
|
||||
bounceTrackingIssueDetails?: BounceTrackingIssueDetails;
|
||||
stylesheetLoadingIssueDetails?: StylesheetLoadingIssueDetails;
|
||||
propertyRuleIssueDetails?: PropertyRuleIssueDetails;
|
||||
federatedAuthUserInfoRequestIssueDetails?: FederatedAuthUserInfoRequestIssueDetails;
|
||||
}
|
||||
/**
|
||||
@ -2806,6 +2826,20 @@ property
|
||||
}
|
||||
export type setEffectivePropertyValueForNodeReturnValue = {
|
||||
}
|
||||
/**
|
||||
* Modifies the property rule property name.
|
||||
*/
|
||||
export type setPropertyRulePropertyNameParameters = {
|
||||
styleSheetId: StyleSheetId;
|
||||
range: SourceRange;
|
||||
propertyName: string;
|
||||
}
|
||||
export type setPropertyRulePropertyNameReturnValue = {
|
||||
/**
|
||||
* The resulting key text after modification.
|
||||
*/
|
||||
propertyName: Value;
|
||||
}
|
||||
/**
|
||||
* Modifies the keyframe rule key text.
|
||||
*/
|
||||
@ -8306,11 +8340,11 @@ of the request to the endpoint that set the cookie.
|
||||
/**
|
||||
* Types of reasons why a cookie may not be stored from a response.
|
||||
*/
|
||||
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyBlockedInFirstPartySet"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"SamePartyConflictsWithOtherAttributes"|"NameValuePairExceedsMaxSize"|"DisallowedCharacter";
|
||||
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"SamePartyConflictsWithOtherAttributes"|"NameValuePairExceedsMaxSize"|"DisallowedCharacter"|"NoCookieContent";
|
||||
/**
|
||||
* Types of reasons why a cookie may not be sent with a request.
|
||||
*/
|
||||
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"NameValuePairExceedsMaxSize";
|
||||
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"NameValuePairExceedsMaxSize";
|
||||
/**
|
||||
* A cookie which was not stored from a response with the corresponding reason.
|
||||
*/
|
||||
@ -13195,12 +13229,12 @@ Tokens from that issuer.
|
||||
/**
|
||||
* Enum of interest group access types.
|
||||
*/
|
||||
export type InterestGroupAccessType = "join"|"leave"|"update"|"loaded"|"bid"|"win";
|
||||
export type InterestGroupAccessType = "join"|"leave"|"update"|"loaded"|"bid"|"win"|"additionalBid"|"additionalBidWin"|"clear";
|
||||
/**
|
||||
* Ad advertising element inside an interest group.
|
||||
*/
|
||||
export interface InterestGroupAd {
|
||||
renderUrl: string;
|
||||
renderURL: string;
|
||||
metadata?: string;
|
||||
}
|
||||
/**
|
||||
@ -13211,10 +13245,10 @@ Tokens from that issuer.
|
||||
name: string;
|
||||
expirationTime: Network.TimeSinceEpoch;
|
||||
joiningOrigin: string;
|
||||
biddingUrl?: string;
|
||||
biddingWasmHelperUrl?: string;
|
||||
updateUrl?: string;
|
||||
trustedBiddingSignalsUrl?: string;
|
||||
biddingLogicURL?: string;
|
||||
biddingWasmHelperURL?: string;
|
||||
updateURL?: string;
|
||||
trustedBiddingSignalsURL?: string;
|
||||
trustedBiddingSignalsKeys: string[];
|
||||
userBiddingSignals?: string;
|
||||
ads: InterestGroupAd[];
|
||||
@ -15928,7 +15962,7 @@ possible for mulitple rule sets and links to trigger a single attempt.
|
||||
/**
|
||||
* List of FinalStatus reasons for Prerender2.
|
||||
*/
|
||||
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"InProgressNavigation"|"NavigationRequestBlockedByCsp"|"MainFrameNavigation"|"MojoBinderPolicy"|"RendererProcessCrashed"|"RendererProcessKilled"|"Download"|"TriggerDestroyed"|"NavigationNotCommitted"|"NavigationBadHttpStatus"|"ClientCertRequested"|"NavigationRequestNetworkError"|"MaxNumOfRunningPrerendersExceeded"|"CancelAllHostsForTesting"|"DidFailLoad"|"Stop"|"SslCertificateError"|"LoginAuthRequested"|"UaChangeRequiresReload"|"BlockedByClient"|"AudioOutputDeviceRequested"|"MixedContent"|"TriggerBackgrounded"|"MemoryLimitExceeded"|"FailToGetMemoryUsage"|"DataSaverEnabled"|"HasEffectiveUrl"|"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"|"ResourceLoadBlockedByClient"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts";
|
||||
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MainFrameNavigation"|"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"|"ResourceLoadBlockedByClient"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts"|"MaxNumOfRunningEagerPrerendersExceeded"|"MaxNumOfRunningNonEagerPrerendersExceeded"|"MaxNumOfRunningEmbedderPrerendersExceeded"|"PrerenderingUrlHasEffectiveUrl"|"RedirectedPrerenderingUrlHasEffectiveUrl"|"ActivationUrlHasEffectiveUrl";
|
||||
/**
|
||||
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
||||
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
||||
@ -15949,23 +15983,6 @@ filter out the ones that aren't necessary to the developers.
|
||||
export type ruleSetRemovedPayload = {
|
||||
id: RuleSetId;
|
||||
}
|
||||
/**
|
||||
* Fired when a prerender attempt is completed.
|
||||
*/
|
||||
export type prerenderAttemptCompletedPayload = {
|
||||
key: PreloadingAttemptKey;
|
||||
/**
|
||||
* The frame id of the frame initiating prerendering.
|
||||
*/
|
||||
initiatingFrameId: Page.FrameId;
|
||||
prerenderingUrl: string;
|
||||
finalStatus: PrerenderFinalStatus;
|
||||
/**
|
||||
* This is used to give users more information about the name of the API call
|
||||
that is incompatible with prerender and has caused the cancellation of the attempt
|
||||
*/
|
||||
disallowedApiMethod?: string;
|
||||
}
|
||||
/**
|
||||
* Fired when a preload enabled state is updated.
|
||||
*/
|
||||
@ -16033,7 +16050,7 @@ whether this account has ever been used to sign in to this RP before.
|
||||
/**
|
||||
* Whether the dialog shown is an account chooser or an auto re-authentication dialog.
|
||||
*/
|
||||
export type DialogType = "AccountChooser"|"AutoReauthn"|"ConfirmIdpSignin";
|
||||
export type DialogType = "AccountChooser"|"AutoReauthn"|"ConfirmIdpLogin";
|
||||
/**
|
||||
* Corresponds to IdentityRequestAccount
|
||||
*/
|
||||
@ -16044,7 +16061,7 @@ whether this account has ever been used to sign in to this RP before.
|
||||
givenName: string;
|
||||
pictureUrl: string;
|
||||
idpConfigUrl: string;
|
||||
idpSigninUrl: string;
|
||||
idpLoginUrl: string;
|
||||
loginState: LoginState;
|
||||
/**
|
||||
* These two are only set if the loginState is signUp
|
||||
@ -16086,13 +16103,13 @@ normally happen, if this is unimportant to what's being tested.
|
||||
export type selectAccountReturnValue = {
|
||||
}
|
||||
/**
|
||||
* Only valid if the dialog type is ConfirmIdpSignin. Acts as if the user had
|
||||
* Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
|
||||
clicked the continue button.
|
||||
*/
|
||||
export type confirmIdpSigninParameters = {
|
||||
export type confirmIdpLoginParameters = {
|
||||
dialogId: string;
|
||||
}
|
||||
export type confirmIdpSigninReturnValue = {
|
||||
export type confirmIdpLoginReturnValue = {
|
||||
}
|
||||
export type dismissDialogParameters = {
|
||||
dialogId: string;
|
||||
@ -17668,8 +17685,7 @@ other objects in their object group.
|
||||
*/
|
||||
export type ScriptId = string;
|
||||
/**
|
||||
* Represents options for serialization. Overrides `generatePreview`, `returnByValue` and
|
||||
`generateWebDriverValue`.
|
||||
* Represents options for serialization. Overrides `generatePreview` and `returnByValue`.
|
||||
*/
|
||||
export interface SerializationOptions {
|
||||
serialization: "deep"|"json"|"idOnly";
|
||||
@ -17688,7 +17704,7 @@ Values can be only of type string or integer.
|
||||
* Represents deep serialized value.
|
||||
*/
|
||||
export interface DeepSerializedValue {
|
||||
type: "undefined"|"null"|"string"|"number"|"boolean"|"bigint"|"regexp"|"date"|"symbol"|"array"|"object"|"function"|"map"|"set"|"weakmap"|"weakset"|"error"|"proxy"|"promise"|"typedarray"|"arraybuffer"|"node"|"window";
|
||||
type: "undefined"|"null"|"string"|"number"|"boolean"|"bigint"|"regexp"|"date"|"symbol"|"array"|"object"|"function"|"map"|"set"|"weakmap"|"weakset"|"error"|"proxy"|"promise"|"typedarray"|"arraybuffer"|"node"|"window"|"generator";
|
||||
value?: any;
|
||||
objectId?: string;
|
||||
/**
|
||||
@ -17738,10 +17754,6 @@ property.
|
||||
* String representation of the object.
|
||||
*/
|
||||
description?: string;
|
||||
/**
|
||||
* Deprecated. Use `deepSerializedValue` instead. WebDriver BiDi representation of the value.
|
||||
*/
|
||||
webDriverValue?: DeepSerializedValue;
|
||||
/**
|
||||
* Deep serialized value.
|
||||
*/
|
||||
@ -18279,16 +18291,9 @@ boundaries).
|
||||
This is mutually exclusive with `executionContextId`.
|
||||
*/
|
||||
uniqueContextId?: string;
|
||||
/**
|
||||
* Deprecated. Use `serializationOptions: {serialization:"deep"}` instead.
|
||||
Whether the result should contain `webDriverValue`, serialized according to
|
||||
https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
|
||||
resulting `objectId` is still provided.
|
||||
*/
|
||||
generateWebDriverValue?: boolean;
|
||||
/**
|
||||
* Specifies the result serialization. If provided, overrides
|
||||
`generatePreview`, `returnByValue` and `generateWebDriverValue`.
|
||||
`generatePreview` and `returnByValue`.
|
||||
*/
|
||||
serializationOptions?: SerializationOptions;
|
||||
}
|
||||
@ -18438,17 +18443,9 @@ boundaries).
|
||||
This is mutually exclusive with `contextId`.
|
||||
*/
|
||||
uniqueContextId?: string;
|
||||
/**
|
||||
* Deprecated. Use `serializationOptions: {serialization:"deep"}` instead.
|
||||
Whether the result should contain `webDriverValue`, serialized
|
||||
according to
|
||||
https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
|
||||
resulting `objectId` is still provided.
|
||||
*/
|
||||
generateWebDriverValue?: boolean;
|
||||
/**
|
||||
* Specifies the result serialization. If provided, overrides
|
||||
`generatePreview`, `returnByValue` and `generateWebDriverValue`.
|
||||
`generatePreview` and `returnByValue`.
|
||||
*/
|
||||
serializationOptions?: SerializationOptions;
|
||||
}
|
||||
@ -18922,7 +18919,6 @@ Error was thrown.
|
||||
"DeviceAccess.deviceRequestPrompted": DeviceAccess.deviceRequestPromptedPayload;
|
||||
"Preload.ruleSetUpdated": Preload.ruleSetUpdatedPayload;
|
||||
"Preload.ruleSetRemoved": Preload.ruleSetRemovedPayload;
|
||||
"Preload.prerenderAttemptCompleted": Preload.prerenderAttemptCompletedPayload;
|
||||
"Preload.preloadEnabledStateUpdated": Preload.preloadEnabledStateUpdatedPayload;
|
||||
"Preload.prefetchStatusUpdated": Preload.prefetchStatusUpdatedPayload;
|
||||
"Preload.prerenderStatusUpdated": Preload.prerenderStatusUpdatedPayload;
|
||||
@ -19018,6 +19014,7 @@ Error was thrown.
|
||||
"CSS.trackComputedStyleUpdates": CSS.trackComputedStyleUpdatesParameters;
|
||||
"CSS.takeComputedStyleUpdates": CSS.takeComputedStyleUpdatesParameters;
|
||||
"CSS.setEffectivePropertyValueForNode": CSS.setEffectivePropertyValueForNodeParameters;
|
||||
"CSS.setPropertyRulePropertyName": CSS.setPropertyRulePropertyNameParameters;
|
||||
"CSS.setKeyframeKey": CSS.setKeyframeKeyParameters;
|
||||
"CSS.setMediaText": CSS.setMediaTextParameters;
|
||||
"CSS.setContainerQueryText": CSS.setContainerQueryTextParameters;
|
||||
@ -19440,7 +19437,7 @@ Error was thrown.
|
||||
"FedCm.enable": FedCm.enableParameters;
|
||||
"FedCm.disable": FedCm.disableParameters;
|
||||
"FedCm.selectAccount": FedCm.selectAccountParameters;
|
||||
"FedCm.confirmIdpSignin": FedCm.confirmIdpSigninParameters;
|
||||
"FedCm.confirmIdpLogin": FedCm.confirmIdpLoginParameters;
|
||||
"FedCm.dismissDialog": FedCm.dismissDialogParameters;
|
||||
"FedCm.resetCooldown": FedCm.resetCooldownParameters;
|
||||
"Console.clearMessages": Console.clearMessagesParameters;
|
||||
@ -19591,6 +19588,7 @@ Error was thrown.
|
||||
"CSS.trackComputedStyleUpdates": CSS.trackComputedStyleUpdatesReturnValue;
|
||||
"CSS.takeComputedStyleUpdates": CSS.takeComputedStyleUpdatesReturnValue;
|
||||
"CSS.setEffectivePropertyValueForNode": CSS.setEffectivePropertyValueForNodeReturnValue;
|
||||
"CSS.setPropertyRulePropertyName": CSS.setPropertyRulePropertyNameReturnValue;
|
||||
"CSS.setKeyframeKey": CSS.setKeyframeKeyReturnValue;
|
||||
"CSS.setMediaText": CSS.setMediaTextReturnValue;
|
||||
"CSS.setContainerQueryText": CSS.setContainerQueryTextReturnValue;
|
||||
@ -20013,7 +20011,7 @@ Error was thrown.
|
||||
"FedCm.enable": FedCm.enableReturnValue;
|
||||
"FedCm.disable": FedCm.disableReturnValue;
|
||||
"FedCm.selectAccount": FedCm.selectAccountReturnValue;
|
||||
"FedCm.confirmIdpSignin": FedCm.confirmIdpSigninReturnValue;
|
||||
"FedCm.confirmIdpLogin": FedCm.confirmIdpLoginReturnValue;
|
||||
"FedCm.dismissDialog": FedCm.dismissDialogReturnValue;
|
||||
"FedCm.resetCooldown": FedCm.resetCooldownReturnValue;
|
||||
"Console.clearMessages": Console.clearMessagesReturnValue;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user