[AAE-5343] add update person api (#7426)

* add update person api

* fix e2e tests
This commit is contained in:
Denys Vuika
2021-12-16 11:08:09 +00:00
committed by GitHub
parent 75adf217d1
commit 65a9d2bbfa
3 changed files with 20 additions and 3 deletions

View File

@@ -113,6 +113,7 @@ export class EditProcessFilterCloudComponentPage {
async setSortFilterDropDown(option) {
await this.sortDropdown.selectDropdownOption(option);
await browser.sleep(500);
}
async getSortFilterDropDownValue(): Promise<string> {
@@ -120,7 +121,7 @@ export class EditProcessFilterCloudComponentPage {
return BrowserActions.getText(sortLocator);
}
async setOrderFilterDropDown(option) {
async setOrderFilterDropDown(option: string) {
await this.orderDropdown.selectDropdownOption(option);
await browser.sleep(1500);
}