import { by } from 'protractor'; import { locate } from './util'; export function getPage() { return by.css('app-hero-list-groups-page'); } export function getComponent() { return by.css('app-hero-list-groups'); } export function getComponentContainer() { const findContainer = () => by.css('ul'); return locate(getComponent(), findContainer()); } export function getHeroesList() { return getComponentContainer().all(by.css('li')); }