selenium: Initial version of wdio-mediawiki package
[lhc/web/wiklou.git] / tests / selenium / pageobjects / history.page.js
1 const Page = require( 'wdio-mediawiki/Page' );
2
3 class HistoryPage extends Page {
4 get comment() { return browser.element( '#pagehistory .comment' ); }
5
6 open( title ) {
7 super.openTitle( title, { action: 'history' } );
8 }
9 }
10
11 module.exports = new HistoryPage();