selenium: Upgrade from webdriver v4 to v5
[lhc/web/wiklou.git] / tests / selenium / pageobjects / watchable.page.js
1 const Page = require( 'wdio-mediawiki/Page' );
2
3 class WatchablePage extends Page {
4
5 get confirmWatch() { return $( '#mw-content-text button[type="submit"]' ); }
6
7 watch( title ) {
8 super.openTitle( title, { action: 'watch' } );
9 this.confirmWatch.click();
10 }
11 }
12
13 module.exports = new WatchablePage();