[ADF-3700] Create an automated test to cover the process placeholder (#3921)

* [ADF-3700] Create an automated test to cover the start process placeholder

* adding space

* Moving the checks to existing tests
This commit is contained in:
jdosti
2018-10-29 17:21:40 +00:00
committed by Eugenio Romano
parent 489fbe69e2
commit afd44afea6
2 changed files with 21 additions and 0 deletions

View File

@@ -134,6 +134,14 @@ var StartProcessPage = function () {
return startProcessButton.click();
};
this.checkSelectProcessPlaceholderIsDisplayed = function () {
Util.waitUntilElementIsVisible(processDefinition);
var processPlaceholder = processDefinition.getAttribute('value').then((function (result) {
return result;
}));
return processPlaceholder;
};
};
module.exports = StartProcessPage;