mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-28 02:53:11 +00:00
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class FusePage {
|
|
navigateTo(): any {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText(): any {
|
|
return element(by.css('app #main')).getText();
|
|
}
|
|
}
|