[ADF-3543] Start Process Component for APS 2 (#4105)

* [ADF-3543] Start Process Component for APS 2

* [ADF-3543] Fix e2e tests

* [ADF-3543] Process filter data automation id with process key

* [ADF-3543] Fix Process Services e2e tests

* [ADF-3543] Fix Search e2e tests

* [ADF-3543] Fix Search e2e tests
This commit is contained in:
davidcanonieto
2019-01-04 13:22:03 +01:00
committed by Maurizio Vitale
parent dd25467a98
commit 2acd1b4e26
30 changed files with 1423 additions and 30 deletions

View File

@@ -62,10 +62,6 @@ export class DatePickerPage {
return `${('0' + date.getDate()).slice(-2)}-${this.months[date.getMonth()]}-${date.getFullYear().toString().substr(-2)}`;
}
convertDateToNewFormat(date) { // Format : mm-dd-yy
return `${date.getMonth() + 1}-${('0' + date.getDate()).slice(-2)}-${date.getFullYear().toString().substr(-2)}`;
}
selectTodayDate() {
this.checkDatePickerIsDisplayed();
let todayDate = element(by.css('.mat-calendar-body-today'));