tycg_carviolation_FE/e2e/app.po.ts

12 lines
219 B
TypeScript
Raw Normal View History

2023-08-03 10:37:39 +08:00
import { browser, element, by } from 'protractor/globals';
export class CoreUIPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
}
}