Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

playwright-core

Package Overview
Dependencies
Maintainers
1
Versions
4622
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 0.11.1-next.1584743044056 to 0.11.1-next.1584746930259

10

lib/chromium/crNetworkManager.js

@@ -22,2 +22,3 @@ "use strict";

const platform = require("../platform");
const crTarget_1 = require("./crTarget");
class CRNetworkManager {

@@ -152,3 +153,10 @@ constructor(client, page) {

}
const frame = event.frameId ? this._page._frameManager.frame(event.frameId) : workerFrame;
let frame = event.frameId ? this._page._frameManager.frame(event.frameId) : workerFrame;
// Check if it's main resource request interception (targetId === main frame id).
if (!frame && interceptionId && event.frameId === crTarget_1.CRTarget.fromPage(this._page)._targetId) {
// Main resource request for the page is being intercepted so the Frame is not created
// yet. Precreate it here for the purposes of request interception. It will be updated
// later as soon as the request contnues and we receive frame tree from the page.
frame = this._page._frameManager.frameAttached(event.frameId, null);
}
if (!frame) {

@@ -155,0 +163,0 @@ if (interceptionId)

2

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

@@ -5,0 +5,0 @@ "repository": "github:Microsoft/playwright",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc