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

playwright

Package Overview
Dependencies
Maintainers
5
Versions
4798
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

playwright - npm Package Compare versions

Comparing version 0.11.1-next.1583993157193 to 0.11.1-next.1584409672845

4

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

@@ -15,4 +15,4 @@ "repository": "github:Microsoft/playwright",

"dependencies": {
"playwright-core": "=0.11.1-next.1583993157193"
"playwright-core": "=0.11.1-next.1584409672845"
}
}

@@ -104,3 +104,3 @@ # Playwright

This code snippet sets up network interception for a WebKit page to log all network requests.
This code snippet sets up request routing for a WebKit page to log all network requests.

@@ -116,5 +116,5 @@ ```js

// Log and continue all network requests
page.route('**', request => {
console.log(request.url());
request.continue();
page.route('**', route => {
console.log(route.request().url());
route.continue();
});

@@ -121,0 +121,0 @@

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