mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-13 17:14:02 +03:00
parent
7971bb0335
commit
b6bd7c0d6a
@ -1,6 +1,6 @@
|
||||
# 🎭 Playwright
|
||||
|
||||
[![npm version](https://img.shields.io/npm/v/playwright.svg?style=flat)](https://www.npmjs.com/package/playwright) [![Join Slack](https://img.shields.io/badge/join-slack-infomational)](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) <!-- GEN:chromium-version-badge -->[![Chromium version](https://img.shields.io/badge/chromium-90.0.4399.0-blue.svg?logo=google-chrome)](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[![Firefox version](https://img.shields.io/badge/firefox-86.0b9-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> <!-- GEN:webkit-version-badge -->[![WebKit version](https://img.shields.io/badge/webkit-14.1-blue.svg?logo=safari)](https://webkit.org/)<!-- GEN:stop -->
|
||||
[![npm version](https://img.shields.io/npm/v/playwright.svg?style=flat)](https://www.npmjs.com/package/playwright) [![Join Slack](https://img.shields.io/badge/join-slack-infomational)](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) <!-- GEN:chromium-version-badge -->[![Chromium version](https://img.shields.io/badge/chromium-90.0.4412.0-blue.svg?logo=google-chrome)](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[![Firefox version](https://img.shields.io/badge/firefox-86.0b9-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> <!-- GEN:webkit-version-badge -->[![WebKit version](https://img.shields.io/badge/webkit-14.1-blue.svg?logo=safari)](https://webkit.org/)<!-- GEN:stop -->
|
||||
|
||||
## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/#?path=docs/api.md)
|
||||
|
||||
@ -8,7 +8,7 @@ Playwright is a Node.js library to automate [Chromium](https://www.chromium.org/
|
||||
|
||||
| | Linux | macOS | Windows |
|
||||
| :--- | :---: | :---: | :---: |
|
||||
| Chromium <!-- GEN:chromium-version -->90.0.4399.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Chromium <!-- GEN:chromium-version -->90.0.4412.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| WebKit <!-- GEN:webkit-version -->14.1<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Firefox <!-- GEN:firefox-version -->86.0b9<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
"browsers": [
|
||||
{
|
||||
"name": "chromium",
|
||||
"revision": "846621",
|
||||
"revision": "851527",
|
||||
"download": true
|
||||
},
|
||||
{
|
||||
|
@ -788,6 +788,7 @@ some CSP errors in the future.
|
||||
}
|
||||
export type ContentSecurityPolicyViolationType = "kInlineViolation"|"kEvalViolation"|"kURLViolation"|"kTrustedTypesSinkViolation"|"kTrustedTypesPolicyViolation";
|
||||
export interface SourceCodeLocation {
|
||||
scriptId?: Runtime.ScriptId;
|
||||
url: string;
|
||||
lineNumber: number;
|
||||
columnNumber: number;
|
||||
@ -807,14 +808,16 @@ some CSP errors in the future.
|
||||
sourceCodeLocation?: SourceCodeLocation;
|
||||
violatingNodeId?: DOM.BackendNodeId;
|
||||
}
|
||||
export type SharedArrayBufferIssueType = "TransferIssue"|"CreationIssue";
|
||||
/**
|
||||
* Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
|
||||
code. Currently only used for COEP/COOP, but may be extended to include
|
||||
some CSP errors in the future.
|
||||
*/
|
||||
export interface SharedArrayBufferTransferIssueDetails {
|
||||
export interface SharedArrayBufferIssueDetails {
|
||||
sourceCodeLocation: SourceCodeLocation;
|
||||
isWarning: boolean;
|
||||
type: SharedArrayBufferIssueType;
|
||||
}
|
||||
export type TwaQualityEnforcementViolationType = "kHttpError"|"kUnavailableOffline"|"kDigitalAssetLinks";
|
||||
export interface TrustedWebActivityIssueDetails {
|
||||
@ -835,12 +838,21 @@ used when violation type is kDigitalAssetLinks.
|
||||
*/
|
||||
signature?: string;
|
||||
}
|
||||
export interface LowTextContrastIssueDetails {
|
||||
violatingNodeId: DOM.BackendNodeId;
|
||||
violatingNodeSelector: string;
|
||||
contrastRatio: number;
|
||||
thresholdAA: number;
|
||||
thresholdAAA: number;
|
||||
fontSize: string;
|
||||
fontWeight: 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 = "SameSiteCookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferTransferIssue"|"TrustedWebActivityIssue";
|
||||
export type InspectorIssueCode = "SameSiteCookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"TrustedWebActivityIssue"|"LowTextContrastIssue";
|
||||
/**
|
||||
* 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
|
||||
@ -852,8 +864,9 @@ add a new optional field to this type.
|
||||
blockedByResponseIssueDetails?: BlockedByResponseIssueDetails;
|
||||
heavyAdIssueDetails?: HeavyAdIssueDetails;
|
||||
contentSecurityPolicyIssueDetails?: ContentSecurityPolicyIssueDetails;
|
||||
sharedArrayBufferTransferIssueDetails?: SharedArrayBufferTransferIssueDetails;
|
||||
sharedArrayBufferIssueDetails?: SharedArrayBufferIssueDetails;
|
||||
twaQualityEnforcementDetails?: TrustedWebActivityIssueDetails;
|
||||
lowTextContrastIssueDetails?: LowTextContrastIssueDetails;
|
||||
}
|
||||
/**
|
||||
* An inspector issue reported from the back-end.
|
||||
@ -918,6 +931,14 @@ applies to images.
|
||||
}
|
||||
export type enableReturnValue = {
|
||||
}
|
||||
/**
|
||||
* Runs the contrast check for the target page. Found issues are reported
|
||||
using Audits.issueAdded event.
|
||||
*/
|
||||
export type checkContrastParameters = {
|
||||
}
|
||||
export type checkContrastReturnValue = {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -4742,10 +4763,11 @@ resource fetches.
|
||||
}
|
||||
/**
|
||||
* Used to specify User Agent Cient Hints to emulate. See https://wicg.github.io/ua-client-hints
|
||||
Missing optional values will be filled in by the target with what it would normally use.
|
||||
*/
|
||||
export interface UserAgentMetadata {
|
||||
brands: UserAgentBrandVersion[];
|
||||
fullVersion: string;
|
||||
brands?: UserAgentBrandVersion[];
|
||||
fullVersion?: string;
|
||||
platform: string;
|
||||
platformVersion: string;
|
||||
architecture: string;
|
||||
@ -7205,11 +7227,11 @@ module) (0-based).
|
||||
/**
|
||||
* Types of reasons why a cookie may not be stored from a response.
|
||||
*/
|
||||
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax";
|
||||
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"SamePartyConflictsWithOtherAttributes";
|
||||
/**
|
||||
* Types of reasons why a cookie may not be sent with a request.
|
||||
*/
|
||||
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax";
|
||||
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext";
|
||||
/**
|
||||
* A cookie which was not stored from a response with the corresponding reason.
|
||||
*/
|
||||
@ -8007,6 +8029,11 @@ are represented by the invalid cookie line string instead of a proper cookie.
|
||||
* Raw response headers as they were received over the wire.
|
||||
*/
|
||||
headers: Headers;
|
||||
/**
|
||||
* The IP address space of the resource. The address space can only be determined once the transport
|
||||
established the connection, so we can't send it in `requestWillBeSentExtraInfo`.
|
||||
*/
|
||||
resourceIPAddressSpace: IPAddressSpace;
|
||||
/**
|
||||
* Raw response header text as it was received over the wire. The raw text may not always be
|
||||
available, such as in the case of HTTP/2 or QUIC.
|
||||
@ -8702,6 +8729,23 @@ continueInterceptedRequest call.
|
||||
*/
|
||||
crossAlignment?: LineStyle;
|
||||
}
|
||||
/**
|
||||
* Configuration data for the highlighting of Flex item elements.
|
||||
*/
|
||||
export interface FlexItemHighlightConfig {
|
||||
/**
|
||||
* Style of the box representing the item's base size
|
||||
*/
|
||||
baseSizeBox?: BoxStyle;
|
||||
/**
|
||||
* Style of the border around the box representing the item's base size
|
||||
*/
|
||||
baseSizeBorder?: LineStyle;
|
||||
/**
|
||||
* Style of the arrow representing if the item grew or shrank
|
||||
*/
|
||||
flexibilityArrow?: LineStyle;
|
||||
}
|
||||
/**
|
||||
* Style information for drawing a line.
|
||||
*/
|
||||
@ -8797,6 +8841,10 @@ continueInterceptedRequest call.
|
||||
* The flex container highlight configuration (default: all transparent).
|
||||
*/
|
||||
flexContainerHighlightConfig?: FlexContainerHighlightConfig;
|
||||
/**
|
||||
* The flex item highlight configuration (default: all transparent).
|
||||
*/
|
||||
flexItemHighlightConfig?: FlexItemHighlightConfig;
|
||||
/**
|
||||
* The contrast algorithm to use for the contrast ratio (default: aa).
|
||||
*/
|
||||
@ -16022,6 +16070,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||
"Audits.getEncodedResponse": Audits.getEncodedResponseParameters;
|
||||
"Audits.disable": Audits.disableParameters;
|
||||
"Audits.enable": Audits.enableParameters;
|
||||
"Audits.checkContrast": Audits.checkContrastParameters;
|
||||
"BackgroundService.startObserving": BackgroundService.startObservingParameters;
|
||||
"BackgroundService.stopObserving": BackgroundService.stopObservingParameters;
|
||||
"BackgroundService.setRecording": BackgroundService.setRecordingParameters;
|
||||
@ -16529,6 +16578,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||
"Audits.getEncodedResponse": Audits.getEncodedResponseReturnValue;
|
||||
"Audits.disable": Audits.disableReturnValue;
|
||||
"Audits.enable": Audits.enableReturnValue;
|
||||
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
||||
"BackgroundService.startObserving": BackgroundService.startObservingReturnValue;
|
||||
"BackgroundService.stopObserving": BackgroundService.stopObservingReturnValue;
|
||||
"BackgroundService.setRecording": BackgroundService.setRecordingReturnValue;
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.5 KiB |
64
types/protocol.d.ts
vendored
64
types/protocol.d.ts
vendored
@ -788,6 +788,7 @@ some CSP errors in the future.
|
||||
}
|
||||
export type ContentSecurityPolicyViolationType = "kInlineViolation"|"kEvalViolation"|"kURLViolation"|"kTrustedTypesSinkViolation"|"kTrustedTypesPolicyViolation";
|
||||
export interface SourceCodeLocation {
|
||||
scriptId?: Runtime.ScriptId;
|
||||
url: string;
|
||||
lineNumber: number;
|
||||
columnNumber: number;
|
||||
@ -807,14 +808,16 @@ some CSP errors in the future.
|
||||
sourceCodeLocation?: SourceCodeLocation;
|
||||
violatingNodeId?: DOM.BackendNodeId;
|
||||
}
|
||||
export type SharedArrayBufferIssueType = "TransferIssue"|"CreationIssue";
|
||||
/**
|
||||
* Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
|
||||
code. Currently only used for COEP/COOP, but may be extended to include
|
||||
some CSP errors in the future.
|
||||
*/
|
||||
export interface SharedArrayBufferTransferIssueDetails {
|
||||
export interface SharedArrayBufferIssueDetails {
|
||||
sourceCodeLocation: SourceCodeLocation;
|
||||
isWarning: boolean;
|
||||
type: SharedArrayBufferIssueType;
|
||||
}
|
||||
export type TwaQualityEnforcementViolationType = "kHttpError"|"kUnavailableOffline"|"kDigitalAssetLinks";
|
||||
export interface TrustedWebActivityIssueDetails {
|
||||
@ -835,12 +838,21 @@ used when violation type is kDigitalAssetLinks.
|
||||
*/
|
||||
signature?: string;
|
||||
}
|
||||
export interface LowTextContrastIssueDetails {
|
||||
violatingNodeId: DOM.BackendNodeId;
|
||||
violatingNodeSelector: string;
|
||||
contrastRatio: number;
|
||||
thresholdAA: number;
|
||||
thresholdAAA: number;
|
||||
fontSize: string;
|
||||
fontWeight: 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 = "SameSiteCookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferTransferIssue"|"TrustedWebActivityIssue";
|
||||
export type InspectorIssueCode = "SameSiteCookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"TrustedWebActivityIssue"|"LowTextContrastIssue";
|
||||
/**
|
||||
* 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
|
||||
@ -852,8 +864,9 @@ add a new optional field to this type.
|
||||
blockedByResponseIssueDetails?: BlockedByResponseIssueDetails;
|
||||
heavyAdIssueDetails?: HeavyAdIssueDetails;
|
||||
contentSecurityPolicyIssueDetails?: ContentSecurityPolicyIssueDetails;
|
||||
sharedArrayBufferTransferIssueDetails?: SharedArrayBufferTransferIssueDetails;
|
||||
sharedArrayBufferIssueDetails?: SharedArrayBufferIssueDetails;
|
||||
twaQualityEnforcementDetails?: TrustedWebActivityIssueDetails;
|
||||
lowTextContrastIssueDetails?: LowTextContrastIssueDetails;
|
||||
}
|
||||
/**
|
||||
* An inspector issue reported from the back-end.
|
||||
@ -918,6 +931,14 @@ applies to images.
|
||||
}
|
||||
export type enableReturnValue = {
|
||||
}
|
||||
/**
|
||||
* Runs the contrast check for the target page. Found issues are reported
|
||||
using Audits.issueAdded event.
|
||||
*/
|
||||
export type checkContrastParameters = {
|
||||
}
|
||||
export type checkContrastReturnValue = {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -4742,10 +4763,11 @@ resource fetches.
|
||||
}
|
||||
/**
|
||||
* Used to specify User Agent Cient Hints to emulate. See https://wicg.github.io/ua-client-hints
|
||||
Missing optional values will be filled in by the target with what it would normally use.
|
||||
*/
|
||||
export interface UserAgentMetadata {
|
||||
brands: UserAgentBrandVersion[];
|
||||
fullVersion: string;
|
||||
brands?: UserAgentBrandVersion[];
|
||||
fullVersion?: string;
|
||||
platform: string;
|
||||
platformVersion: string;
|
||||
architecture: string;
|
||||
@ -7205,11 +7227,11 @@ module) (0-based).
|
||||
/**
|
||||
* Types of reasons why a cookie may not be stored from a response.
|
||||
*/
|
||||
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax";
|
||||
export type SetCookieBlockedReason = "SecureOnly"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"SyntaxError"|"SchemeNotSupported"|"OverwriteSecure"|"InvalidDomain"|"InvalidPrefix"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"SamePartyConflictsWithOtherAttributes";
|
||||
/**
|
||||
* Types of reasons why a cookie may not be sent with a request.
|
||||
*/
|
||||
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax";
|
||||
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext";
|
||||
/**
|
||||
* A cookie which was not stored from a response with the corresponding reason.
|
||||
*/
|
||||
@ -8007,6 +8029,11 @@ are represented by the invalid cookie line string instead of a proper cookie.
|
||||
* Raw response headers as they were received over the wire.
|
||||
*/
|
||||
headers: Headers;
|
||||
/**
|
||||
* The IP address space of the resource. The address space can only be determined once the transport
|
||||
established the connection, so we can't send it in `requestWillBeSentExtraInfo`.
|
||||
*/
|
||||
resourceIPAddressSpace: IPAddressSpace;
|
||||
/**
|
||||
* Raw response header text as it was received over the wire. The raw text may not always be
|
||||
available, such as in the case of HTTP/2 or QUIC.
|
||||
@ -8702,6 +8729,23 @@ continueInterceptedRequest call.
|
||||
*/
|
||||
crossAlignment?: LineStyle;
|
||||
}
|
||||
/**
|
||||
* Configuration data for the highlighting of Flex item elements.
|
||||
*/
|
||||
export interface FlexItemHighlightConfig {
|
||||
/**
|
||||
* Style of the box representing the item's base size
|
||||
*/
|
||||
baseSizeBox?: BoxStyle;
|
||||
/**
|
||||
* Style of the border around the box representing the item's base size
|
||||
*/
|
||||
baseSizeBorder?: LineStyle;
|
||||
/**
|
||||
* Style of the arrow representing if the item grew or shrank
|
||||
*/
|
||||
flexibilityArrow?: LineStyle;
|
||||
}
|
||||
/**
|
||||
* Style information for drawing a line.
|
||||
*/
|
||||
@ -8797,6 +8841,10 @@ continueInterceptedRequest call.
|
||||
* The flex container highlight configuration (default: all transparent).
|
||||
*/
|
||||
flexContainerHighlightConfig?: FlexContainerHighlightConfig;
|
||||
/**
|
||||
* The flex item highlight configuration (default: all transparent).
|
||||
*/
|
||||
flexItemHighlightConfig?: FlexItemHighlightConfig;
|
||||
/**
|
||||
* The contrast algorithm to use for the contrast ratio (default: aa).
|
||||
*/
|
||||
@ -16022,6 +16070,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||
"Audits.getEncodedResponse": Audits.getEncodedResponseParameters;
|
||||
"Audits.disable": Audits.disableParameters;
|
||||
"Audits.enable": Audits.enableParameters;
|
||||
"Audits.checkContrast": Audits.checkContrastParameters;
|
||||
"BackgroundService.startObserving": BackgroundService.startObservingParameters;
|
||||
"BackgroundService.stopObserving": BackgroundService.stopObservingParameters;
|
||||
"BackgroundService.setRecording": BackgroundService.setRecordingParameters;
|
||||
@ -16529,6 +16578,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||
"Audits.getEncodedResponse": Audits.getEncodedResponseReturnValue;
|
||||
"Audits.disable": Audits.disableReturnValue;
|
||||
"Audits.enable": Audits.enableReturnValue;
|
||||
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
||||
"BackgroundService.startObserving": BackgroundService.startObservingReturnValue;
|
||||
"BackgroundService.stopObserving": BackgroundService.stopObservingReturnValue;
|
||||
"BackgroundService.setRecording": BackgroundService.setRecordingReturnValue;
|
||||
|
Loading…
Reference in New Issue
Block a user