page-chauffeur
Version:
A cross browser library for writing functional tests using webdriver
18 lines (14 loc) • 418 B
JavaScript
var Page = require('../../../../lib/page.js'),
inherits = require('util').inherits;
function screenshotTestPage() {
this.title = 'Screenshot Test Page';
this._content = {
body: {
selector: '#screenshotTestPage'
}
};
}
inherits(screenshotTestPage, Page);
screenshotTestPage.url = 'http://localhost:9001/screenshot-test.html';
screenshotTestPage.wait = 0;
module.exports = screenshotTestPage;