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

@applitools/driver

Package Overview
Dependencies
Maintainers
23
Versions
221
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.2.0 to 1.2.1

2

.bongo/dry-run/package-lock.json

@@ -7,3 +7,3 @@ {

"version": "file:../dry-run.tgz",
"integrity": "sha512-zRt9c44ilW/TBn1wHGgoORJ3ye2xWnKfoiwAIqeUKA5q7GxRy1ec3qu6v+7W6Rj4QIj+W/49r6TO773cIMoQPQ==",
"integrity": "sha512-EBfwFjQLae5ODPLRI62hTUk1d9awx4dyM6hm5c+IVa0IYP/P0I3+uY1vSpqiT55xI+0gOL26Osgxt/g2xZlxHA==",
"requires": {

@@ -10,0 +10,0 @@ "@applitools/snippets": "2.1.7",

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

## 1.2.1 - 2021/9/10
- fix mocked scripts in MockDriver
## 1.2.0 - 2021/9/9

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

{
"name": "@applitools/driver",
"version": "1.2.0",
"version": "1.2.1",
"description": "Applitools universal framework wrapper",

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

@@ -145,6 +145,5 @@ const {inspect} = require('util')

const elementId = ids[index]
el.attributes = el.attributes || []
el.attributes.push({name: 'data-applitools-selector', value: elementId})
element.attributes = element.attributes || []
element.attributes.push({name: 'data-applitools-selector', value: elementId})
const selector = `[data-applitools-selector~="${elementId}"]`
this.mockSelector(selector, element)
selectors.push([selector])

@@ -162,2 +161,5 @@ }

})
this.mockScript(snippets.getElementContentSize, ([element]) => {
return element.rect || {x: 0, y: 0, width: 100, height: 100}
})
this.mockScript(snippets.getDocumentSize, () => {

@@ -164,0 +166,0 @@ // TODO get window for context: `this.contexts.get(this._contextId)`

Sorry, the diff of this file is not supported yet

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