blob: 6718608c705a80505f4b7c6c4bc99ef280d99078 [file] [log] [blame]
talasila4ad39a52017-02-07 15:03:57 -05001/**
2 * This file uses the Page Object pattern to define the main page for tests
3 * https://docs.google.com/presentation/d/1B6manhG0zEXkC-H-tPo2vwU06JhL8w9-XCF9oehXzAQ
4 */
5
6'use strict';
7
8var MainPage = function() {
9 this.heroEl = element(by.css('.hero-unit'));
10 this.h1El = this.heroEl.element(by.css('h1'));
11 this.imgEl = this.heroEl.element(by.css('img'));
12};
13
14module.exports = new MainPage();
15