mirror of
https://github.com/farcasclaudiu/kanban2.git
synced 2026-06-22 09:01:38 +03:00
12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
import { browser, element, by } from 'protractor';
|
|
|
|
export class ValuationJsPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|