Your IP : 216.73.216.54


Current Path : /var/www/html/mediawiki-1.43.1/tests/selenium/pageobjects/
Upload File :
Current File : /var/www/html/mediawiki-1.43.1/tests/selenium/pageobjects/history.page.js

'use strict';

const Page = require( 'wdio-mediawiki/Page' );

class HistoryPage extends Page {
	get heading() {
		return $( '#firstHeading' );
	}

	get comment() {
		return $( '#pagehistory .comment' );
	}

	async open( title ) {
		return super.openTitle( title, { action: 'history' } );
	}
}

module.exports = new HistoryPage();