watchable.page.js 317 B

1234567891011121314
  1. const Page = require( 'wdio-mediawiki/Page' );
  2. class WatchablePage extends Page {
  3. get confirmWatch() { return browser.element( '#mw-content-text button[type="submit"]' ); }
  4. watch( title ) {
  5. super.openTitle( title, { action: 'watch' } );
  6. this.confirmWatch.click();
  7. }
  8. }
  9. module.exports = new WatchablePage();