mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(firefox): bump firefox to 1283, firefox-beta to 1277 (#8184)
This commit is contained in:
parent
ec418e1706
commit
5327b8ca6d
@ -13,12 +13,12 @@
|
||||
},
|
||||
{
|
||||
"name": "firefox",
|
||||
"revision": "1282",
|
||||
"revision": "1283",
|
||||
"installByDefault": true
|
||||
},
|
||||
{
|
||||
"name": "firefox-beta",
|
||||
"revision": "1276",
|
||||
"revision": "1277",
|
||||
"installByDefault": false
|
||||
},
|
||||
{
|
||||
|
||||
@ -207,8 +207,10 @@ export class FFBrowserContext extends BrowserContext {
|
||||
promises.push(this._ensureVideosPath().then(() => {
|
||||
return this._browser._connection.send('Browser.setVideoRecordingOptions', {
|
||||
// validateBrowserContextOptions ensures correct video size.
|
||||
...this._options.recordVideo!.size!,
|
||||
dir: this._options.recordVideo!.dir,
|
||||
options: {
|
||||
...this._options.recordVideo!.size!,
|
||||
dir: this._options.recordVideo!.dir,
|
||||
},
|
||||
browserContextId: this._browserContextId
|
||||
});
|
||||
}));
|
||||
|
||||
8
src/server/firefox/protocol.d.ts
vendored
8
src/server/firefox/protocol.d.ts
vendored
@ -283,9 +283,11 @@ export module Protocol {
|
||||
export type setForcedColorsReturnValue = void;
|
||||
export type setVideoRecordingOptionsParameters = {
|
||||
browserContextId?: string;
|
||||
dir: string;
|
||||
width: number;
|
||||
height: number;
|
||||
options?: {
|
||||
dir: string;
|
||||
width: number;
|
||||
height: number;
|
||||
};
|
||||
};
|
||||
export type setVideoRecordingOptionsReturnValue = void;
|
||||
export type cancelDownloadParameters = {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user