Created
June 27, 2017 09:47
-
-
Save t8g/68577ad7f7bc8ed80a0f6fb87b3914a4 to your computer and use it in GitHub Desktop.
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
// byteclub_test.js | |
module.exports = { | |
'Test ByteClub website' : function (browser) { | |
browser | |
// On navigue vers une url | |
.url('http://byteclub.fr') | |
// On clique sur un lien (trouvé avec un selecteur css) | |
.click('.nav.nav-main li:nth-child(5) a') | |
// et on attend un peu | |
.pause(1000); | |
// Si tout va bien on devrait avoir | |
browser.expect.element('h1.page-title').text.to.contains('Qui sommes nous ?'); | |
// Tout s'est bien passé ? On ferme ! | |
browser.end(); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment