[ADF-3417]Fixing test rail ID's (#3651)

This commit is contained in:
cristinaj
2018-08-03 13:13:37 +03:00
committed by Eugenio Romano
parent 94463a7505
commit 70605c8982
13 changed files with 70 additions and 70 deletions

View File

@@ -85,7 +85,7 @@ describe('Start Task - Custom App', () => {
done();
});
it('Modifying task', () => {
it('[C263942] Modifying task', () => {
processServicesPage.goToProcessServices().goToApp(appModel.name).clickTasksButton();
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
taskPage.createNewTask().addName(tasks[0])
@@ -107,7 +107,7 @@ describe('Start Task - Custom App', () => {
});
});
it('Information box', () => {
it('[C263946] Information box', () => {
processServicesPage.goToProcessServices().goToApp(appModel.name).clickTasksButton();
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
taskPage.createNewTask().addName(tasks[1]).addDescription('Description')
@@ -143,7 +143,7 @@ describe('Start Task - Custom App', () => {
});
});
it('Start task with no form', () => {
it('[C263947] Start task with no form', () => {
processServicesPage.goToProcessServices().goToApp(appModel.name).clickTasksButton();
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
taskPage.createNewTask().addName(tasks[2]).clickStartButton()
@@ -154,7 +154,7 @@ describe('Start Task - Custom App', () => {
});
});
it('Start task buttons', () => {
it('[C263948] Start task buttons', () => {
processServicesPage.goToProcessServices().goToApp(appModel.name).clickTasksButton();
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
taskPage.createNewTask().checkStartButtonIsDisabled().addName(tasks[3])
@@ -165,7 +165,7 @@ describe('Start Task - Custom App', () => {
});
});
it('Refreshing the form', () => {
it('[C263949] Refreshing the form', () => {
processServicesPage.goToProcessServices().goToApp(appModel.name).clickTasksButton();
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
taskPage.createNewTask()
@@ -182,7 +182,7 @@ describe('Start Task - Custom App', () => {
});
});
it('Assign User', () => {
it('[C263951] Assign User', () => {
processServicesPage.goToProcessServices().goToApp(appModel.name).clickTasksButton();
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
taskPage.createNewTask().addName(tasks[5]).addAssignee(assigneeUserModel.firstName).clickStartButton()