Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(chromium): roll to 833159 #4626

Merged
merged 1 commit into from
Dec 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# 🎭 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-89.0.4330.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-84.0b7-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> [![WebKit version](https://img.shields.io/badge/webkit-14.0-blue.svg?logo=safari)](https://webkit.org/)
[![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-89.0.4344.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-84.0b7-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> [![WebKit version](https://img.shields.io/badge/webkit-14.0-blue.svg?logo=safari)](https://webkit.org/)

## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/#?path=docs/api.md)

Playwright is a Node.js library to automate [Chromium](https://www.chromium.org/Home), [Firefox](https://www.mozilla.org/en-US/firefox/new/) and [WebKit](https://webkit.org/) with a single API. Playwright is built to enable cross-browser web automation that is **ever-green**, **capable**, **reliable** and **fast**.

| | Linux | macOS | Windows |
| :--- | :---: | :---: | :---: |
| Chromium <!-- GEN:chromium-version -->89.0.4330.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Chromium <!-- GEN:chromium-version -->89.0.4344.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| WebKit 14.1 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Firefox <!-- GEN:firefox-version -->84.0b7<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |

Expand Down
2 changes: 1 addition & 1 deletion browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"browsers": [
{
"name": "chromium",
"revision": "828656",
"revision": "833159",
"download": true
},
{
Expand Down
147 changes: 143 additions & 4 deletions src/server/chromium/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export module Protocol {
/**
* Enum of possible native property sources (as a subtype of a particular AXValueSourceType).
*/
export type AXValueNativeSourceType = "figcaption"|"label"|"labelfor"|"labelwrapped"|"legend"|"tablecaption"|"title"|"other";
export type AXValueNativeSourceType = "figcaption"|"label"|"labelfor"|"labelwrapped"|"legend"|"rubyannotation"|"tablecaption"|"title"|"other";
/**
* A single source for a computed AX property.
*/
Expand Down Expand Up @@ -204,13 +204,28 @@ children, if requested.
nodes: AXNode[];
}
/**
* Fetches the entire accessibility tree
* Fetches the entire accessibility tree for the root Document
*/
export type getFullAXTreeParameters = {
/**
* The maximum depth at which descendants of the root node should be retrieved.
If omitted, the full tree is returned.
*/
max_depth?: number;
}
export type getFullAXTreeReturnValue = {
nodes: AXNode[];
}
/**
* Fetches a particular accessibility node by AXNodeId.
Requires `enable()` to have been called previously.
*/
export type getChildAXNodesParameters = {
id: AXNodeId;
}
export type getChildAXNodesReturnValue = {
nodes: AXNode[];
}
/**
* Query a DOM node's accessibility subtree for accessible name and role.
This command computes the name and role for all nodes in the subtree, including those that are
Expand Down Expand Up @@ -6580,7 +6595,7 @@ file, data and other requests and responses, their headers, bodies, timing, etc.
/**
* Resource type as it was perceived by the rendering engine.
*/
export type ResourceType = "Document"|"Stylesheet"|"Image"|"Media"|"Font"|"Script"|"TextTrack"|"XHR"|"Fetch"|"EventSource"|"WebSocket"|"Manifest"|"SignedExchange"|"Ping"|"CSPViolationReport"|"Other";
export type ResourceType = "Document"|"Stylesheet"|"Image"|"Media"|"Font"|"Script"|"TextTrack"|"XHR"|"Fetch"|"EventSource"|"WebSocket"|"Manifest"|"SignedExchange"|"Ping"|"CSPViolationReport"|"Preflight"|"Other";
/**
* Unique loader identifier.
*/
Expand Down Expand Up @@ -7080,7 +7095,7 @@ If the opcode isn't 1, then payloadData is a base64 encoded string representing
/**
* Type of this initiator.
*/
type: "parser"|"script"|"preload"|"SignedExchange"|"other";
type: "parser"|"script"|"preload"|"SignedExchange"|"preflight"|"other";
/**
* Initiator JavaScript stack trace, set for Script only.
*/
Expand All @@ -7099,6 +7114,10 @@ module) (0-based).
module) (0-based).
*/
columnNumber?: number;
/**
* Set if another request triggered this request (e.g. preflight).
*/
requestId?: RequestId;
}
/**
* Cookie object
Expand Down Expand Up @@ -7411,6 +7430,13 @@ https://wicg.github.io/webpackage/draft-yasskin-httpbis-origin-signed-exchanges-
*/
errors?: SignedExchangeError[];
}
export type PrivateNetworkRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate";
export type IPAddressSpace = "Local"|"Private"|"Public"|"Unknown";
export interface ClientSecurityState {
initiatorIsSecureContext: boolean;
initiatorIPAddressSpace: IPAddressSpace;
privateNetworkRequestPolicy: PrivateNetworkRequestPolicy;
}
export type CrossOriginOpenerPolicyValue = "SameOrigin"|"SameOriginAllowPopups"|"UnsafeNone"|"SameOriginPlusCoep";
export interface CrossOriginOpenerPolicyStatus {
value: CrossOriginOpenerPolicyValue;
Expand Down Expand Up @@ -7855,6 +7881,29 @@ this requestId will be the same as the requestId present in the requestWillBeSen
*/
request: WebSocketRequest;
}
/**
* Fired upon WebTransport creation.
*/
export type webTransportCreatedPayload = {
/**
* WebTransport identifier.
*/
transportId: RequestId;
/**
* WebTransport request URL.
*/
url: string;
/**
* Request initiator.
*/
initiator?: Initiator;
}
export type webTransportClosedPayload = {
/**
* WebTransport identifier.
*/
transportId: RequestId;
}
/**
* Fired when additional information about a requestWillBeSent event is available from the
network stack. Not every requestWillBeSent event will have an additional
Expand All @@ -7875,6 +7924,10 @@ the request and the ones not sent; the latter are distinguished by having blocke
* Raw request headers as they will be sent over the wire.
*/
headers: Headers;
/**
* The client security state set for the request.
*/
clientSecurityState?: ClientSecurityState;
}
/**
* Fired when additional information about a responseReceived event is available from the network
Expand Down Expand Up @@ -7902,6 +7955,35 @@ available, such as in the case of HTTP/2 or QUIC.
*/
headersText?: string;
}
/**
* Fired exactly once for each Trust Token operation. Depending on
the type of the operation and whether the operation succeeded or
failed, the event is fired before the corresponding request was sent
or after the response was received.
*/
export type trustTokenOperationDonePayload = {
/**
* Detailed success or error status of the operation.
'AlreadyExists' also signifies a successful operation, as the result
of the operation already exists und thus, the operation was abort
preemptively (e.g. a cache hit).
*/
status: "Ok"|"InvalidArgument"|"FailedPrecondition"|"ResourceExhausted"|"AlreadyExists"|"Unavailable"|"BadResponse"|"InternalError"|"UnknownError"|"FulfilledLocally";
type: TrustTokenOperationType;
requestId: RequestId;
/**
* Top level origin. The context in which the operation was attempted.
*/
topLevelOrigin?: string;
/**
* Origin of the issuer in case of a "Issuance" or "Redemption" operation.
*/
issuerOrigin?: string;
/**
* The number of obtained Trust Tokens on a successful "Issuance" operation.
*/
issuedTokenCount?: number;
}

/**
* Tells whether clearing browser cache is supported.
Expand Down Expand Up @@ -8541,6 +8623,26 @@ continueInterceptedRequest call.
* The style of the separator between items
*/
itemSeparator?: LineStyle;
/**
* Style of content-distribution space on the main axis (justify-content).
*/
mainDistributedSpace?: BoxStyle;
/**
* Style of content-distribution space on the cross axis (align-content).
*/
crossDistributedSpace?: BoxStyle;
/**
* Style of empty space caused by row gaps (gap/row-gap).
*/
rowGapSpace?: BoxStyle;
/**
* Style of empty space caused by columns gaps (gap/column-gap).
*/
columnGapSpace?: BoxStyle;
/**
* Style of the self-alignment line (align-items).
*/
crossAlignment?: LineStyle;
}
/**
* Style information for drawing a line.
Expand All @@ -8555,6 +8657,20 @@ continueInterceptedRequest call.
*/
pattern?: "dashed"|"dotted";
}
/**
* Style information for drawing a box.
*/
export interface BoxStyle {
/**
* The background color for the box (default: transparent)
*/
fillColor?: DOM.RGBA;
/**
* The hatching color for the box (default: transparent)
*/
hatchColor?: DOM.RGBA;
}
export type ContrastAlgorithm = "aa"|"aaa"|"apca";
/**
* Configuration data for the highlighting of page elements.
*/
Expand Down Expand Up @@ -8623,6 +8739,10 @@ continueInterceptedRequest call.
* The flex container highlight configuration (default: all transparent).
*/
flexContainerHighlightConfig?: FlexContainerHighlightConfig;
/**
* The contrast algorithm to use for the contrast ratio (default: aa).
*/
contrastAlgorithm?: ContrastAlgorithm;
}
export type ColorFormat = "rgb"|"hsl"|"hex";
/**
Expand Down Expand Up @@ -9517,6 +9637,15 @@ Example URLs: http://www.google.com/file.html -> "google.com"
*/
frame: Frame;
}
/**
* Fired when opening document to write to.
*/
export type documentOpenedPayload = {
/**
* Frame object.
*/
frame: Frame;
}
export type frameResizedPayload = void;
/**
* Fired when a renderer-initiated navigation is requested.
Expand Down Expand Up @@ -9820,6 +9949,10 @@ event is emitted.
* Capture the screenshot from the surface, rather than the view. Defaults to true.
*/
fromSurface?: boolean;
/**
* Capture the screenshot beyond the viewport. Defaults to false.
*/
captureBeyondViewport?: boolean;
}
export type captureScreenshotReturnValue = {
/**
Expand Down Expand Up @@ -15589,8 +15722,11 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
"Network.webSocketFrameSent": Network.webSocketFrameSentPayload;
"Network.webSocketHandshakeResponseReceived": Network.webSocketHandshakeResponseReceivedPayload;
"Network.webSocketWillSendHandshakeRequest": Network.webSocketWillSendHandshakeRequestPayload;
"Network.webTransportCreated": Network.webTransportCreatedPayload;
"Network.webTransportClosed": Network.webTransportClosedPayload;
"Network.requestWillBeSentExtraInfo": Network.requestWillBeSentExtraInfoPayload;
"Network.responseReceivedExtraInfo": Network.responseReceivedExtraInfoPayload;
"Network.trustTokenOperationDone": Network.trustTokenOperationDonePayload;
"Overlay.inspectNodeRequested": Overlay.inspectNodeRequestedPayload;
"Overlay.nodeHighlightRequested": Overlay.nodeHighlightRequestedPayload;
"Overlay.screenshotRequested": Overlay.screenshotRequestedPayload;
Expand All @@ -15601,6 +15737,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
"Page.frameClearedScheduledNavigation": Page.frameClearedScheduledNavigationPayload;
"Page.frameDetached": Page.frameDetachedPayload;
"Page.frameNavigated": Page.frameNavigatedPayload;
"Page.documentOpened": Page.documentOpenedPayload;
"Page.frameResized": Page.frameResizedPayload;
"Page.frameRequestedNavigation": Page.frameRequestedNavigationPayload;
"Page.frameScheduledNavigation": Page.frameScheduledNavigationPayload;
Expand Down Expand Up @@ -15689,6 +15826,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
"Accessibility.enable": Accessibility.enableParameters;
"Accessibility.getPartialAXTree": Accessibility.getPartialAXTreeParameters;
"Accessibility.getFullAXTree": Accessibility.getFullAXTreeParameters;
"Accessibility.getChildAXNodes": Accessibility.getChildAXNodesParameters;
"Accessibility.queryAXTree": Accessibility.queryAXTreeParameters;
"Animation.disable": Animation.disableParameters;
"Animation.enable": Animation.enableParameters;
Expand Down Expand Up @@ -16193,6 +16331,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
"Accessibility.enable": Accessibility.enableReturnValue;
"Accessibility.getPartialAXTree": Accessibility.getPartialAXTreeReturnValue;
"Accessibility.getFullAXTree": Accessibility.getFullAXTreeReturnValue;
"Accessibility.getChildAXNodes": Accessibility.getChildAXNodesReturnValue;
"Accessibility.queryAXTree": Accessibility.queryAXTreeReturnValue;
"Animation.disable": Animation.disableReturnValue;
"Animation.enable": Animation.enableReturnValue;
Expand Down