@testim/testim-cli
Version:
Command line interface for running Testing on you CI
38 lines (32 loc) • 1.2 kB
JavaScript
var chai = require('chai'),
assert = chai.assert,
webdriverio = require('../../index');
describe('my webdriverio tests', function(){
this.timeout(99999999);
var client = {};
before(function(done){
client = webdriverio.remote({ desiredCapabilities: {browserName: 'phantomjs'} });
client.init(done);
});
it('Github test',function(done) {
client
.url('https://github.com/')
.getElementSize('.header-logo-wordmark', function(err, result) {
assert.equal(undefined, err);
assert.strictEqual(result.height , 26);
assert.strictEqual(result.width, 89);
})
.getTitle(function(err, title) {
assert.equal(undefined, err);
assert.strictEqual(title,'GitHub · Where software is built');
})
.getCssProperty('a[href="/plans"]', 'color', function(err, result){
assert.equal(undefined, err);
assert.strictEqual(result.value, 'rgba(64,120,192,1)');
})
.call(done);
});
after(function(done) {
client.end(done);
});
});