Last active
August 29, 2015 14:19
-
-
Save silvenon/2e3a0fa847423133757a to your computer and use it in GitHub Desktop.
WebdriverIO example with chai-as-promised.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var chai = require('chai'); | |
var chaiAsPromised = require('chai-as-promised'); | |
var client = require('webdriverio').remote({ | |
desiredCapabilities: { | |
browserName: 'phantomjs' | |
} | |
}); | |
chai.use(chaiAsPromised); | |
chai.should(); | |
chaiAsPromised.transferPromiseness = client.transferPromiseness; | |
// this doesn't work | |
client.getText('.foo').should.eventually.equal(client.getText('.bar')); | |
// what is a good way to do this? | |
client.end(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment