summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE-os/e2e/main/main.po.js
blob: 6718608c705a80505f4b7c6c4bc99ef280d99078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * 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.heroEl = element(by.css('.hero-unit'));
  this.h1El = this.heroEl.element(by.css('h1'));
  this.imgEl = this.heroEl.element(by.css('img'));
};

module.exports = new MainPage();