base_project

This commit is contained in:
2026-01-29 03:27:40 +00:00
commit 93065930d8
1844 changed files with 120002 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>;
}
}