Skip to content

Instantly share code, notes, and snippets.

@serhatbolsu
Last active August 12, 2020 08:33
Show Gist options
  • Save serhatbolsu/2d67e27c8d95010d4832821dd0d1da2e to your computer and use it in GitHub Desktop.
Save serhatbolsu/2d67e27c8d95010d4832821dd0d1da2e to your computer and use it in GitHub Desktop.
webdriverIO-Page-Object-Parent-class
export default class ModalComponent {
constructor(element) {
this.element = element;
}
get title() {return this.element.$('h3').getText();}
get content() {return this.element.$('p').getText();}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment