blob: 2ae8e2c4241fe68275bba9a295b2060543b81c70 [file] [log] [blame]
/**
* This file uses the Page Object pattern to define the main page for tests
* https://docs.google.com/presentation/d/1B6manhG0zEXkC-H-tPo2vwU06JhL8w9-XCF9oehXzAQ
*/
'use strict';
var MainPage = function() {
this.jumbEl = element(by.css('.jumbotron'));
this.h1El = this.jumbEl.element(by.css('h1'));
this.imgEl = this.jumbEl.element(by.css('img'));
this.techEl = element(by.css('.row'));
this.thumbnailEls = this.techEl.all(by.repeater('awesomeThing in awesomeThings'));
};
module.exports = new MainPage();