Skip to content

Instantly share code, notes, and snippets.

@gaggle
Last active December 9, 2016 18:39
Show Gist options
  • Save gaggle/a4a822ec5bea81a992157f77c9d628d6 to your computer and use it in GitHub Desktop.
Save gaggle/a4a822ec5bea81a992157f77c9d628d6 to your computer and use it in GitHub Desktop.
WebdriverIO test
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