@applitools/screenshoter
Advanced tools
Comparing version 3.6.1 to 3.6.2
{ | ||
"name": "@applitools/screenshoter", | ||
"version": "3.6.1", | ||
"version": "3.6.2", | ||
"description": "Applitools universal screenshoter for web and native applications", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -102,3 +102,3 @@ const utils = require('@applitools/utils') | ||
if (stabilization.rotate) image.rotate(stabilization.rotate) | ||
else if (driver.orientation?.startsWith('landscape') && image.width < image.height) image.rotate(-90) | ||
else if (driver.orientation.startsWith('landscape') && image.width < image.height) image.rotate(-90) | ||
@@ -130,3 +130,3 @@ if (stabilization.crop) image.crop(stabilization.crop) | ||
if (stabilization.rotate) image.rotate(stabilization.rotate) | ||
else if (driver.orientation?.startsWith('landscape') && image.width < image.height) image.rotate(-90) | ||
else if (driver.orientation.startsWith('landscape') && image.width < image.height) image.rotate(-90) | ||
@@ -133,0 +133,0 @@ await image.debug({...debug, name: 'marker'}) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52298