blob: 24bc8b3cfceda2a790ca6320c04e3753168eada2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo() {
return browser.get('/');
}
getMainHeading() {
return element(by.css('app-root h1')).getText();
}
}
|