540co/epa-rfi

View on GitHub
e2e/main.po.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * 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.h1El = element(by.css('h1'));
};

module.exports = new MainPage();