base_project

This commit is contained in:
2026-01-23 06:46:21 +00:00
commit 2df8f296f4
1843 changed files with 119930 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo(): Promise<unknown> {
return browser.get(browser.baseUrl) as Promise<unknown>;
}
getTitleText(): Promise<string> {
return element(by.css('app-root .content span')).getText() as Promise<string>;
}
}