New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

playwright-core

Package Overview
Dependencies
Maintainers
1
Versions
4829
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

playwright-core - npm Package Compare versions

Comparing version

to
0.11.1-next.1583872341343

10

lib/webkit/wkPage.js

@@ -123,2 +123,8 @@ "use strict";

promises.push(session.send('Page.setBypassCSP', { enabled: true }));
if (this._page._state.viewportSize) {
promises.push(session.send('Page.setScreenSizeOverride', {
width: this._page._state.viewportSize.width,
height: this._page._state.viewportSize.height,
}));
}
promises.push(session.send('Network.setExtraHTTPHeaders', { headers: this._calculateExtraHTTPHeaders() }));

@@ -433,2 +439,6 @@ if (contextOptions.offline)

}),
this._session.send('Page.setScreenSizeOverride', {
width: viewport.width,
height: viewport.height,
}),
];

@@ -435,0 +445,0 @@ await Promise.all(promises);

4

package.json
{
"name": "playwright-core",
"version": "0.11.1-next.1583871165271",
"version": "0.11.1-next.1583872341343",
"description": "A high-level API to automate web browsers",

@@ -13,3 +13,3 @@ "repository": "github:Microsoft/playwright",

"firefox_revision": "1041",
"webkit_revision": "1168"
"webkit_revision": "1171"
},

@@ -16,0 +16,0 @@ "scripts": {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display