wiki.techinc.nl/tests/selenium/pageobjects/watchable.page.js

14 lines
317 B
JavaScript
Raw Normal View History

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