mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-3639] Fix default selected process at Start Process Component (#3848)
* [ADF-3639] Fix default selected process at Start Process Component * [ADF-3639] Fix default selected process at Start Process Component fix e2e * lint fix
This commit is contained in:
committed by
Eugenio Romano
parent
718b3e8817
commit
07fb1da8c6
@@ -58,10 +58,14 @@ var StartProcessPage = function () {
|
||||
|
||||
this.enterProcessName = function (name) {
|
||||
Util.waitUntilElementIsVisible(processNameInput);
|
||||
processNameInput.clear();
|
||||
this.clearProcessName();
|
||||
processNameInput.sendKeys(name);
|
||||
};
|
||||
|
||||
this.clearProcessName = function () {
|
||||
processNameInput.clear();
|
||||
};
|
||||
|
||||
this.selectFromProcessDropdown = function (name) {
|
||||
this.clickProcessDropdownArrow();
|
||||
return this.selectOption(name);
|
||||
@@ -97,6 +101,7 @@ var StartProcessPage = function () {
|
||||
this.typeProcessDefinition = function (name) {
|
||||
Util.waitUntilElementIsVisible(processDefinition);
|
||||
Util.waitUntilElementIsClickable(processDefinition);
|
||||
processDefinition.clear();
|
||||
processDefinition.sendKeys(name);
|
||||
return this;
|
||||
};
|
||||
|
Reference in New Issue
Block a user