[ADF-4012] Should be able to set default columns in adf-process-list-cloud (#4323)

* in progress

* in progress

* ADF-4012 pull request ready

* crc's

* crc's - moved the methods ProcessListCloudComponent to dataTablePage, to keep it common.

* crc's - moved the methods ProcessListCloudComponent to dataTablePage, to keep it common.

* changed the locator to use data-automation-id

* linting fix
This commit is contained in:
gmandakini
2019-02-19 13:12:54 +00:00
committed by Eugenio Romano
parent 8594ecdd2e
commit 81ec4ed441
4 changed files with 231 additions and 0 deletions

View File

@@ -62,4 +62,11 @@ export class ConfigEditorPage {
Util.waitUntilElementIsClickable(button);
return button.click();
}
clickProcessListCloudConfiguration() {
let button = element(by.id('adf-process-list-cloud-conf'));
Util.waitUntilElementIsVisible(button);
Util.waitUntilElementIsClickable(button);
return button.click();
}
}