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

@applitools/driver

Package Overview
Dependencies
Maintainers
24
Versions
218
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/driver - npm Package Compare versions

Comparing version 1.5.1 to 1.5.2

4

CHANGELOG.md

@@ -6,2 +6,6 @@ # Change Log

## 1.5.2 - 2022/3/7
- exclude iOS Safari from dynamic SRE calculation
## 1.5.1 - 2022/3/7

@@ -8,0 +12,0 @@

5

dist/context.js

@@ -356,4 +356,5 @@ "use strict";

else if (this.driver.isWeb) {
const selector = await this.execute(snippets.getDocumentScrollingElement);
this._logger.log(`default SRE is ${selector}`);
const isIOS = this.driver.isIOS;
const selector = isIOS ? 'html' : await this.execute(snippets.getDocumentScrollingElement);
this._logger.log(`default SRE is ${selector}${isIOS ? ' (because Safari on iOS)' : ''}`);
this._scrollingElement = await this.element({ type: 'css', selector });

@@ -360,0 +361,0 @@ }

{
"name": "@applitools/driver",
"version": "1.5.1",
"version": "1.5.2",
"description": "Applitools universal framework wrapper",

@@ -5,0 +5,0 @@ "keywords": [

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