e2e test error page and fix (#3672)

* fix wrong input parameter functionality

* not reload the page to go to the content service page

* navigate instead to reload to go to the process service page
This commit is contained in:
Eugenio Romano
2018-08-08 17:18:26 +01:00
committed by Eugenio Romano
parent 6cf6c9c0e4
commit 2e0945b0cc
32 changed files with 169 additions and 231 deletions

View File

@@ -85,7 +85,7 @@ var UploadDialog = function () {
};
this.filesAreUploaded = function (content) {
for (i=0; i<content.length; i++) {
for (var i=0; i<content.length; i++) {
this.fileIsUploaded(content[i]);
}
return this;
@@ -96,7 +96,7 @@ var UploadDialog = function () {
return this;
};
this.cancelUploads = function (content) {
this.cancelUploads = function () {
Util.waitUntilElementIsVisible(cancelUploads);
cancelUploads.click();
return this;