docs(animations): updated animation docs (#24206)

PR Close #24206
This commit is contained in:
Vani
2018-05-29 22:17:59 -07:00
committed by Ben Lesh
parent e8bab1349f
commit f91b0455c0
80 changed files with 2437 additions and 1293 deletions

View File

@ -0,0 +1,19 @@
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'));
}