mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-03 09:09:47 +01:00
14 lines
218 B
TypeScript
14 lines
218 B
TypeScript
|
import { browser, element, by } from 'protractor';
|
||
|
|
||
|
|
||
|
export class ClaritySeedAppHome {
|
||
|
|
||
|
navigateTo() {
|
||
|
return browser.get('/');
|
||
|
}
|
||
|
|
||
|
getParagraphText() {
|
||
|
return element(by.css('my-app p')).getText();
|
||
|
}
|
||
|
}
|