mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(firefox): roll to r1462 (#32086)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
83b807385d
commit
5cc1e7b299
@ -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 -->128.0.6613.27<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| WebKit <!-- GEN:webkit-version -->18.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Firefox <!-- GEN:firefox-version -->128.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||
| Firefox <!-- GEN:firefox-version -->129.0<!-- 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": "1458",
|
||||
"revision": "1462",
|
||||
"installByDefault": true,
|
||||
"browserVersion": "128.0"
|
||||
"browserVersion": "129.0"
|
||||
},
|
||||
{
|
||||
"name": "firefox-beta",
|
||||
|
||||
@ -1592,7 +1592,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Desktop Firefox HiDPI": {
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0",
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0",
|
||||
"screen": {
|
||||
"width": 1792,
|
||||
"height": 1120
|
||||
@ -1652,7 +1652,7 @@
|
||||
"defaultBrowserType": "chromium"
|
||||
},
|
||||
"Desktop Firefox": {
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0",
|
||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0",
|
||||
"screen": {
|
||||
"width": 1920,
|
||||
"height": 1080
|
||||
|
||||
@ -220,11 +220,6 @@ export module Protocol {
|
||||
}|null;
|
||||
};
|
||||
export type setDefaultViewportReturnValue = void;
|
||||
export type setScrollbarsHiddenParameters = {
|
||||
browserContextId?: string;
|
||||
hidden: boolean;
|
||||
};
|
||||
export type setScrollbarsHiddenReturnValue = void;
|
||||
export type setInitScriptsParameters = {
|
||||
browserContextId?: string;
|
||||
scripts: {
|
||||
@ -1116,7 +1111,6 @@ export module Protocol {
|
||||
"Browser.setDownloadOptions": Browser.setDownloadOptionsParameters;
|
||||
"Browser.setTouchOverride": Browser.setTouchOverrideParameters;
|
||||
"Browser.setDefaultViewport": Browser.setDefaultViewportParameters;
|
||||
"Browser.setScrollbarsHidden": Browser.setScrollbarsHiddenParameters;
|
||||
"Browser.setInitScripts": Browser.setInitScriptsParameters;
|
||||
"Browser.addBinding": Browser.addBindingParameters;
|
||||
"Browser.grantPermissions": Browser.grantPermissionsParameters;
|
||||
@ -1197,7 +1191,6 @@ export module Protocol {
|
||||
"Browser.setDownloadOptions": Browser.setDownloadOptionsReturnValue;
|
||||
"Browser.setTouchOverride": Browser.setTouchOverrideReturnValue;
|
||||
"Browser.setDefaultViewport": Browser.setDefaultViewportReturnValue;
|
||||
"Browser.setScrollbarsHidden": Browser.setScrollbarsHiddenReturnValue;
|
||||
"Browser.setInitScripts": Browser.setInitScriptsReturnValue;
|
||||
"Browser.addBinding": Browser.addBindingReturnValue;
|
||||
"Browser.grantPermissions": Browser.grantPermissionsReturnValue;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user