This commit is contained in:
Gaurav Kumar
2025-09-26 08:49:03 +05:30
commit 6d2a59da38
903 changed files with 93754 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>;
}
}