feat(firefox-beta): roll Firefox to 1254 - v89.0b9 (#6454)
This commit is contained in:
parent
78ec057117
commit
5e4badd654
|
|
@ -1,6 +1,6 @@
|
|||
# 🎭 Playwright
|
||||
|
||||
[](https://www.npmjs.com/package/playwright) [](https://aka.ms/playwright-slack) <!-- 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) [](https://aka.ms/playwright-slack) <!-- 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/)
|
||||
|
||||
|
|
@ -10,7 +10,7 @@ Playwright is a Node.js library to automate [Chromium](https://www.chromium.org/
|
|||
| :--- | :---: | :---: | :---: |
|
||||
| Chromium <!-- GEN:chromium-version -->92.0.4498.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| WebKit <!-- GEN:webkit-version -->14.2<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Firefox <!-- GEN:firefox-version -->89.0b6<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Firefox <!-- GEN:firefox-version -->89.0b9<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
|
||||
Headless execution is supported for all the browsers on all platforms. Check out [system requirements](https://playwright.dev/docs/intro/#system-requirements) for details.
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
},
|
||||
{
|
||||
"name": "firefox",
|
||||
"revision": "1250",
|
||||
"revision": "1254",
|
||||
"installByDefault": true
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -270,7 +270,6 @@ export module Protocol {
|
|||
dir: string;
|
||||
width: number;
|
||||
height: number;
|
||||
scale?: number;
|
||||
};
|
||||
export type setScreencastOptionsReturnValue = void;
|
||||
}
|
||||
|
|
@ -645,15 +644,6 @@ export module Protocol {
|
|||
message: string;
|
||||
};
|
||||
export type sendMessageToWorkerReturnValue = void;
|
||||
export type startVideoRecordingParameters = {
|
||||
file: string;
|
||||
width: number;
|
||||
height: number;
|
||||
scale?: number;
|
||||
};
|
||||
export type startVideoRecordingReturnValue = void;
|
||||
export type stopVideoRecordingParameters = void;
|
||||
export type stopVideoRecordingReturnValue = void;
|
||||
}
|
||||
export module Runtime {
|
||||
export type RemoteObject = {
|
||||
|
|
@ -1068,8 +1058,6 @@ export module Protocol {
|
|||
"Page.handleDialog": Page.handleDialogParameters;
|
||||
"Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogParameters;
|
||||
"Page.sendMessageToWorker": Page.sendMessageToWorkerParameters;
|
||||
"Page.startVideoRecording": Page.startVideoRecordingParameters;
|
||||
"Page.stopVideoRecording": Page.stopVideoRecordingParameters;
|
||||
"Runtime.evaluate": Runtime.evaluateParameters;
|
||||
"Runtime.callFunction": Runtime.callFunctionParameters;
|
||||
"Runtime.disposeObject": Runtime.disposeObjectParameters;
|
||||
|
|
@ -1141,8 +1129,6 @@ export module Protocol {
|
|||
"Page.handleDialog": Page.handleDialogReturnValue;
|
||||
"Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogReturnValue;
|
||||
"Page.sendMessageToWorker": Page.sendMessageToWorkerReturnValue;
|
||||
"Page.startVideoRecording": Page.startVideoRecordingReturnValue;
|
||||
"Page.stopVideoRecording": Page.stopVideoRecordingReturnValue;
|
||||
"Runtime.evaluate": Runtime.evaluateReturnValue;
|
||||
"Runtime.callFunction": Runtime.callFunctionReturnValue;
|
||||
"Runtime.disposeObject": Runtime.disposeObjectReturnValue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue