feat(firefox): roll to r1470 (#34304)
This commit is contained in:
parent
6179b5b1d7
commit
19c935cde7
|
@ -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://aka.ms/playwright/discord)
|
||||
[](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://aka.ms/playwright/discord)
|
||||
|
||||
## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/docs/api/class-playwright)
|
||||
|
||||
|
@ -10,7 +10,7 @@ Playwright is a framework for Web Testing and Automation. It allows testing [Chr
|
|||
| :--- | :---: | :---: | :---: |
|
||||
| Chromium <!-- GEN:chromium-version -->132.0.6834.57<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| WebKit <!-- GEN:webkit-version -->18.2<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Firefox <!-- GEN:firefox-version -->132.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Firefox <!-- GEN:firefox-version -->133.0.3<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
|
||||
Headless execution is supported for all browsers on all platforms. Check out [system requirements](https://playwright.dev/docs/intro#system-requirements) for details.
|
||||
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
},
|
||||
{
|
||||
"name": "firefox",
|
||||
"revision": "1466",
|
||||
"revision": "1470",
|
||||
"installByDefault": true,
|
||||
"browserVersion": "132.0"
|
||||
"browserVersion": "133.0.3"
|
||||
},
|
||||
{
|
||||
"name": "firefox-beta",
|
||||
|
|
|
@ -1592,7 +1592,7 @@
|
|||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Desktop Firefox HiDPI": {
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0",
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0.3) Gecko/20100101 Firefox/133.0.3",
|
||||
"screen": {
|
||||
"width": 1792,
|
||||
"height": 1120
|
||||
|
@ -1652,7 +1652,7 @@
|
|||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Desktop Firefox": {
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0",
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0.3) Gecko/20100101 Firefox/133.0.3",
|
||||
"screen": {
|
||||
"width": 1920,
|
||||
"height": 1080
|
||||
|
|
|
@ -518,6 +518,10 @@ export module Protocol {
|
|||
}|null;
|
||||
};
|
||||
export type setViewportSizeReturnValue = void;
|
||||
export type setZoomParameters = {
|
||||
zoom: number;
|
||||
};
|
||||
export type setZoomReturnValue = void;
|
||||
export type bringToFrontParameters = {
|
||||
};
|
||||
export type bringToFrontReturnValue = void;
|
||||
|
@ -1134,6 +1138,7 @@ export module Protocol {
|
|||
"Page.setFileInputFiles": Page.setFileInputFilesParameters;
|
||||
"Page.addBinding": Page.addBindingParameters;
|
||||
"Page.setViewportSize": Page.setViewportSizeParameters;
|
||||
"Page.setZoom": Page.setZoomParameters;
|
||||
"Page.bringToFront": Page.bringToFrontParameters;
|
||||
"Page.setEmulatedMedia": Page.setEmulatedMediaParameters;
|
||||
"Page.setCacheDisabled": Page.setCacheDisabledParameters;
|
||||
|
@ -1215,6 +1220,7 @@ export module Protocol {
|
|||
"Page.setFileInputFiles": Page.setFileInputFilesReturnValue;
|
||||
"Page.addBinding": Page.addBindingReturnValue;
|
||||
"Page.setViewportSize": Page.setViewportSizeReturnValue;
|
||||
"Page.setZoom": Page.setZoomReturnValue;
|
||||
"Page.bringToFront": Page.bringToFrontReturnValue;
|
||||
"Page.setEmulatedMedia": Page.setEmulatedMediaReturnValue;
|
||||
"Page.setCacheDisabled": Page.setCacheDisabledReturnValue;
|
||||
|
|
Loading…
Reference in New Issue