selenium: Create local ./log directory if needed
[lhc/web/wiklou.git] / tests / selenium / pageobjects / history.page.js
1 const Page = require( './page' );
2
3 class HistoryPage extends Page {
4 get comment() { return browser.element( '#pagehistory .comment' ); }
5
6 open( name ) {
7 super.open( name + '&action=history' );
8 }
9 }
10
11 module.exports = new HistoryPage();