[ACS-5761] Demo Shell pages cleanup (#8802)

remove the content that is not covered by e2e testing, preparation steps for the demo shell decommissioning
This commit is contained in:
Denys Vuika
2023-08-08 14:09:41 +01:00
committed by GitHub
parent 17535c9f53
commit 4f2b3bce3c
257 changed files with 528 additions and 15154 deletions

View File

@@ -83,10 +83,6 @@ export class TaskListDemoPage {
await this.taskList().getDataTable().waitTillContentLoaded();
}
async getProcessDefinitionId(): Promise<string> {
return BrowserActions.getInputValue(this.processInstanceId);
}
async typeProcessInstanceId(input: string): Promise<void> {
await BrowserActions.clearSendKeys(this.processInstanceId, input);
}
@@ -105,10 +101,6 @@ export class TaskListDemoPage {
await BrowserActions.clearSendKeys(this.page, input.toString());
}
async getPage(): Promise<string> {
return BrowserActions.getInputValue(this.page);
}
async getPageFieldErrorMessage(): Promise<string> {
await BrowserVisibility.waitUntilElementIsVisible(this.pageForm);
const errorMessage = this.pageForm.$('mat-error');
@@ -123,11 +115,6 @@ export class TaskListDemoPage {
await BrowserActions.clearSendKeys(this.dueBefore, input);
}
async clearText(input): Promise<void> {
await BrowserVisibility.waitUntilElementIsVisible(input);
await input.clear();
}
async clickResetButton(): Promise<void> {
await BrowserActions.closeMenuAndDialogs();
await BrowserActions.click(this.resetButton);