[ACS-7427] Process Services improvements and cleanup (#9664)

This commit is contained in:
Denys Vuika
2024-05-20 16:08:47 -04:00
committed by GitHub
parent 96e607b4de
commit e71e2a749a
174 changed files with 1736 additions and 3933 deletions

View File

@@ -20,22 +20,21 @@ import { $ } from 'protractor';
import { TasksListPage } from './tasks-list.page';
export class TaskListDemoPage {
taskListPage = new TasksListPage();
appId = $('input[data-automation-id=\'appId input\']');
itemsPerPage = $('input[data-automation-id=\'items per page\']');
itemsPerPageForm = $(`${materialLocators.Form.field.root}[data-automation-id=\'items per page\']`);
processDefinitionId = $('input[data-automation-id=\'process definition id\']');
processInstanceId = $('input[data-automation-id=\'process instance id\']');
page = $('input[data-automation-id=\'page\']');
pageForm = $(`${materialLocators.Form.field.root}[data-automation-id=\'page\']`);
taskName = $('input[data-automation-id=\'task name\']');
appId = $(`input[data-automation-id='appId input']`);
itemsPerPage = $(`input[data-automation-id='items per page']`);
itemsPerPageForm = $(`${materialLocators.Form.field.root}[data-automation-id='items per page']`);
processDefinitionId = $(`input[data-automation-id='process definition id']`);
processInstanceId = $(`input[data-automation-id='process instance id']`);
page = $(`input[data-automation-id='page']`);
pageForm = $(`${materialLocators.Form.field.root}[data-automation-id='page']`);
taskName = $(`input[data-automation-id='task name']`);
resetButton = $('.app-reset-button button');
dueBefore = $('input[data-automation-id=\'due before\']');
dueAfter = $('input[data-automation-id=\'due after\']');
taskId = $('input[data-automation-id=\'task id\']');
dueBefore = $(`input[data-automation-id='due before']`);
dueAfter = $(`input[data-automation-id='due after']`);
taskId = $(`input[data-automation-id='task id']`);
stateDropDownArrow = $(`${materialLocators.Form.field.root}[data-automation-id=\'state\']`);
stateDropDownArrow = $(`${materialLocators.Form.field.root}[data-automation-id='state']`);
stateDropdown = new DropdownPage(this.stateDropDownArrow);
taskList(): TasksListPage {
@@ -131,5 +130,4 @@ export class TaskListDemoPage {
getAllProcessInstanceIds(): Promise<any> {
return this.taskList().getDataTable().getAllRowsColumnValues('Process Instance Id');
}
}