Socket
Socket
Sign inDemoInstall

playwright-core

Package Overview
Dependencies
Maintainers
0
Versions
4558
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 1.46.0-alpha-2024-07-01 to 1.46.0-alpha-2024-07-02

2

browsers.json

@@ -30,3 +30,3 @@ {

"name": "webkit",
"revision": "2040",
"revision": "2041",
"installByDefault": true,

@@ -33,0 +33,0 @@ "revisionOverrides": {

@@ -93,3 +93,8 @@ "use strict";

async close() {
await this._context.close().catch(() => {});
try {
await this._context.close();
} catch (e) {
if ((0, _errors.isTargetClosedError)(e)) return;
throw e;
}
}

@@ -96,0 +101,0 @@ async waitForEvent(event, optionsOrPredicate = {}) {

{
"name": "playwright-core",
"version": "1.46.0-alpha-2024-07-01",
"version": "1.46.0-alpha-2024-07-02",
"description": "A high-level API to automate web browsers",

@@ -5,0 +5,0 @@ "repository": {

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