mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 12:35:07 +00:00
f4636d9a37
Updated additional project files Updated Angular Material examples
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class Fuse2Page {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|