Created
May 10, 2013 09:39
-
-
Save Spoygg/5553460 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
describe('Test example.com', function(){ | |
before(function(done) { | |
client.init().url('http://example.com', done); | |
}); | |
describe('Check homepage', function(){ | |
it('should see the correct title', function(done) { | |
client.getTitle(function(err, title){ | |
expect(title).to.have.string('Example Domain'); | |
done(); | |
}); | |
}); | |
it('should see the body', function(done) { | |
client.getText('p', function(err, p){ | |
expect(p).to.have.string( | |
'for illustrative examples in documents.' | |
); | |
done(); | |
}) | |
}); | |
}); | |
after(function(done) { | |
client.end(); | |
done(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This gist should be engraved in stone or cast in bronze, because of its importance... THANK YOU!!!!
(coming here from http://code.tutsplus.com/tutorials/headless-functional-testing-with-selenium-and-phantomjs--net-30545 - otherwise a GREAT TUTORIAL page)