Skip to content
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
2 changes: 1 addition & 1 deletion packages/playwright-core/browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
{
"name": "webkit",
"revision": "2361",
"revision": "2364",
"installByDefault": true,
"revisionOverrides": {
"mac14": "2251",
Expand Down
6 changes: 5 additions & 1 deletion packages/playwright-core/src/server/webkit/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6389,7 +6389,11 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
/**
* Limits the bytes per second of requests if positive. Removes any limits if zero or not provided.
*/
bytesPerSecondLimit?: number;
bandwidth?: number;
/**
* Adds a round-trip delay (in milliseconds) to each request if positive. Removes any delay if zero or not provided.
*/
latency?: number;
}
export type setEmulatedConditionsReturnValue = {
}
Expand Down
Loading