UNPKG

page-chauffeur

Version:

A cross browser library for writing functional tests using webdriver

23 lines (20 loc) 566 B
var Page = require('../../../').Page, SignUpForm = require('../modules/signupForm.js'), CommandBar = require('../modules/commandBar.js'), inherits = require('util').inherits; function GithubPage() { this.title = 'GitHub · Build software better, together.'; this._content = { 'headerLogo': '.header-logo-wordmark', 'signUpForm': { module: SignUpForm }, 'commandBar' : { module: CommandBar } }; } inherits(GithubPage, Page); GithubPage.url = 'https://github.com/'; GithubPage.wait = 0; module.exports = GithubPage;