mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-07 03:40:11 +00:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
|
import { browser, by, element } from 'protractor';
|
||
|
|
||
|
export class Gns3WebUiPage {
|
||
|
navigateTo() {
|
||
|
return browser.get('/');
|
||
|
}
|
||
|
|
||
|
getParagraphText() {
|
||
|
return element(by.css('app-root h1')).getText();
|
||
|
}
|
||
|
}
|