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

webdriverio

Package Overview
Dependencies
Maintainers
1
Versions
724
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webdriverio - npm Package Compare versions

Comparing version 3.0.2 to 3.0.3

3

CHANGELOG.md
# CHANGELOG
## v3.0.3 (2015-07-06)
* show also title of pending test (refs #606)
## v3.0.2 (2015-07-06)

@@ -4,0 +7,0 @@ * if specFn is undefined we are dealing with a pending function (fixes #606)

2

examples/webdriverio.with.buster.js

@@ -28,3 +28,3 @@ var buster = require('buster'),

assert(err === undefined);
assert(result.value === 'rgba(65,131,196,1)');
assert(result.value === 'rgba(64,120,192,1)');
})

@@ -31,0 +31,0 @@ .call(done);

@@ -44,3 +44,3 @@ /**

expect(err).toBeFalsy();
expect(color).toBe('rgba(65,131,196,1)');
expect(color).toBe('rgba(64,120,192,1)');
})

@@ -47,0 +47,0 @@ .call(done);

@@ -29,3 +29,3 @@ var chai = require('chai'),

assert.equal(undefined, err);
assert.strictEqual(result.value, 'rgba(65,131,196,1)');
assert.strictEqual(result.value, 'rgba(64,120,192,1)');
})

@@ -32,0 +32,0 @@ .call(done);

@@ -28,3 +28,3 @@ var webdriverio = require('../index'),

assert(err === undefined);
assert(result.value === 'rgba(65,131,196,1)');
assert(result.value === 'rgba(64,120,192,1)');
})

@@ -31,0 +31,0 @@ .call(done);

@@ -26,3 +26,3 @@ var webdriverio = require('../index'),

test.ok(err === undefined, 'getElementCssProperty() should cause no error');
test.ok(result.value === 'rgba(65,131,196,1)', 'color is "' + result + '" but should be "rgba(65,131,196,1)"');
test.ok(result.value === 'rgba(64,120,192,1)', 'color is "' + result + '" but should be "rgba(64,120,192,1)"');
});

@@ -29,0 +29,0 @@

@@ -69,4 +69,4 @@ var vows = require('vows'),

'color should be rgba(65,131,196,1)': function(err,result) {
assert(result.value === 'rgba(65,131,196,1)');
'color should be rgba(64,120,192,1)': function(err,result) {
assert(result.value === 'rgba(64,120,192,1)');
}

@@ -73,0 +73,0 @@

@@ -113,4 +113,4 @@ var q = require('q'),

*/
if(typeof specFn !== 'function') {
return origFn.call(null, specTitle);
if(fnName === 'it' && arguments.length === 1) {
return origFn.call(null, arguments[0]);
}

@@ -117,0 +117,0 @@

{
"name": "webdriverio",
"description": "A nodejs bindings implementation for selenium 2.0/webdriver",
"version": "3.0.2",
"version": "3.0.3",
"homepage": "http://webdriver.io",

@@ -6,0 +6,0 @@ "author": "Camilo Tapia <camilo.tapia@gmail.com>",

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