Created
April 23, 2018 19:00
-
-
Save richardsweeney/ca0c5992c0f0d7f48e7c660e94ff879c 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
module.exports = { | |
'Test Something' (browser) { | |
browser | |
.url( 'https://wordpress.org/' ) | |
.waitForElementVisible( '#download' ) | |
.click( '#download' ) | |
.waitForElementVisible( '.download-meta' ) | |
.assert.urlContains( 'download' ) | |
.end(); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment