Last active
December 9, 2016 18:39
-
-
Save gaggle/a4a822ec5bea81a992157f77c9d628d6 to your computer and use it in GitHub Desktop.
WebdriverIO test
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("blog", () => { | |
it(`has links to home and blog`, () => { | |
BlogPage.open() | |
expect(HeaderPage.home_link.isVisible()).to.be.true | |
expect(HeaderPage.blog_link.isVisible()).to.be.true | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment