mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-3456] DocumentList - context menu (#3694)
* refactor context menu * prune log * remove fdescribe * remove undescore from private * fix e2e action buttons * fix trailing space * remove fdescribe
This commit is contained in:
committed by
Eugenio Romano
parent
62f0804205
commit
4404b724fa
139
e2e/process-services/standalone_task.e2e.ts
Normal file
139
e2e/process-services/standalone_task.e2e.ts
Normal file
@@ -0,0 +1,139 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { browser } from 'protractor';
|
||||
|
||||
import LoginPage = require('../pages/adf/loginPage');
|
||||
import ProcessServicesPage = require('../pages/adf/process_services/processServicesPage');
|
||||
import TasksPage = require('../pages/adf/process_services/tasksPage');
|
||||
|
||||
import CONSTANTS = require('../util/constants');
|
||||
|
||||
import Tenant = require('../models/APS/Tenant');
|
||||
import Task = require('../models/APS/Task');
|
||||
|
||||
import TestConfig = require('../test.config');
|
||||
import resources = require('../util/resources');
|
||||
|
||||
import AlfrescoApi = require('.alfresco-js-api-node');
|
||||
import { UsersActions } from '../actions/users.actions';
|
||||
import fs = require('fs');
|
||||
import path = require('path');
|
||||
import Util = require('..ro/util/util');
|
||||
|
||||
describe('Start Task - Task App', () => {
|
||||
|
||||
let loginPage = new LoginPage();
|
||||
let processServicesPage = new ProcessServicesPage();
|
||||
let processUserModel;
|
||||
let app = resources.Files.SIMPLE_APP_WITH_USER_FORM;
|
||||
let taskPage = new TasksPage();
|
||||
let tasks = ['Standalone task', 'Completed standalone task', 'Add a form', 'Remove form'];
|
||||
let noFormMessage = 'No forms attached';
|
||||
|
||||
beforeAll(async (done) => {
|
||||
let users = new UsersActions();
|
||||
|
||||
this.alfrescoJsApi = new AlfrescoApi({
|
||||
provider: 'BPM',
|
||||
hostBpm: TestConfig.adf.url
|
||||
});
|
||||
|
||||
await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
||||
|
||||
let newTenant = await this.alfrescoJsApi.activiti.adminTenantsApi.createTenant(new Tenant());
|
||||
|
||||
processUserModel = await users.createApsUser(this.alfrescoJsApi, newTenant.id);
|
||||
|
||||
let pathFile = path.join(TestConfig.main.rootPath + app.file_location);
|
||||
let file = fs.createReadStream(pathFile);
|
||||
|
||||
await this.alfrescoJsApi.login(processUserModel.email, processUserModel.password);
|
||||
|
||||
await this.alfrescoJsApi.activiti.appsApi.importAppDefinition(file);
|
||||
|
||||
loginPage.loginToProcessServicesUsingUserModel(processUserModel);
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
it('[C260421] Should a standalone task be displayed when creating a new task without form', () => {
|
||||
processServicesPage.goToProcessServices().goToTaskApp().clickTasksButton();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
|
||||
taskPage.createNewTask().addName(tasks[0]).clickStartButton()
|
||||
.then(() => {
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(tasks[0]);
|
||||
taskPage.usingFormFields().noFormIsDisplayed();
|
||||
expect(taskPage.usingTaskDetails().getFormName()).toEqual(CONSTANTS.TASKDETAILS.NO_FORM);
|
||||
expect(taskPage.usingFormFields().getNoFormMessage()).toEqual(noFormMessage);
|
||||
});
|
||||
});
|
||||
|
||||
it('[C268910] Should a standalone task be displayed in completed tasks when completing it', () => {
|
||||
processServicesPage.goToProcessServices().goToTaskApp().clickTasksButton();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
|
||||
taskPage.createNewTask().addName(tasks[1]).clickStartButton()
|
||||
.then(() => {
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(tasks[1]);
|
||||
taskPage.usingFormFields().noFormIsDisplayed();
|
||||
|
||||
taskPage.completeTaskNoForm();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.COMPL_TASKS);
|
||||
taskPage.usingTasksListPage().selectTaskFromTasksList(tasks[1]);
|
||||
expect(taskPage.usingFormFields().getCompletedTaskNoFormMessage()).toEqual('Task ' + tasks[1] + ' completed');
|
||||
|
||||
taskPage.usingFormFields().noFormIsDisplayed();
|
||||
expect(taskPage.usingTaskDetails().getFormName()).toEqual(CONSTANTS.TASKDETAILS.NO_FORM);
|
||||
});
|
||||
});
|
||||
|
||||
it('[C268911] Should allow adding a form to a standalone task when clicking on Add form button', () => {
|
||||
processServicesPage.goToProcessServices().goToTaskApp().clickTasksButton();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
|
||||
taskPage.createNewTask().addName(tasks[2]).clickStartButton()
|
||||
.then(() => {
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(tasks[2]);
|
||||
taskPage.usingFormFields().noFormIsDisplayed();
|
||||
|
||||
taskPage.usingFormFields().clickOnAttachFormButton().selectForm(app.formName).clickOnAttachFormButton();
|
||||
expect(taskPage.usingTaskDetails().getFormName()).toEqual(app.formName);
|
||||
});
|
||||
});
|
||||
|
||||
it('[C268912] Should a standalone task be displayed when removing the form from APS', () => {
|
||||
processServicesPage.goToProcessServices().goToTaskApp().clickTasksButton();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
|
||||
taskPage.createNewTask().addName(tasks[3]).addForm(app.formName).clickStartButton();
|
||||
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(tasks[3]);
|
||||
expect(taskPage.usingTaskDetails().getFormName()).toEqual(app.formName);
|
||||
|
||||
browser.controlFlow().execute(async () => {
|
||||
const listOfTasks = await this.alfrescoJsApi.activiti.taskApi.listTasks(new Task({ sort: 'created-desc' }));
|
||||
await this.alfrescoJsApi.activiti.taskApi.removeForm(listOfTasks.data[0].id);
|
||||
});
|
||||
|
||||
browser.refresh();
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(tasks[3]);
|
||||
taskPage.checkTaskTitle(tasks[3]);
|
||||
|
||||
taskPage.usingFormFields().noFormIsDisplayed();
|
||||
expect(taskPage.usingTaskDetails().getFormName()).toEqual(CONSTANTS.TASKDETAILS.NO_FORM);
|
||||
expect(taskPage.usingFormFields().getNoFormMessage()).toEqual(noFormMessage);
|
||||
});
|
||||
|
||||
});
|
127
e2e/process-services/task-audit.e2e.ts
Normal file
127
e2e/process-services/task-audit.e2e.ts
Normal file
@@ -0,0 +1,127 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import LoginPage = require('../pages/adf/loginPage');
|
||||
import ProcessServicesPage = require('../pages/adf/process_services/processServicesPage');
|
||||
import TasksPage = require('../pages/adf/process_services/tasksPage');
|
||||
|
||||
import CONSTANTS = require('../util/constants');
|
||||
|
||||
import Tenant = require('../models/APS/Tenant');
|
||||
|
||||
import TestConfig = require('../test.config');
|
||||
import resources = require('../util/resources');
|
||||
|
||||
import AlfrescoApi = require('alfresco-js-api-node');
|
||||
import { UsersActions } from '../actions/users.actions';
|
||||
import { AppsActions } from '../actions/APS/apps.actions';
|
||||
|
||||
import path = require('path');
|
||||
import Util = require('./util/util');
|
||||
|
||||
describe('Start Task - Task App', () => {
|
||||
|
||||
let loginPage = new LoginPage();
|
||||
let processServicesPage = new ProcessServicesPage();
|
||||
let processUserModel;
|
||||
let app = resources.Files.SIMPLE_APP_WITH_USER_FORM;
|
||||
let taskPage = new TasksPage();
|
||||
let taskTaskApp = 'Audit task task app';
|
||||
let taskCustomApp = 'Audit task custom app';
|
||||
let taskCompleteCustomApp = 'Audit completed task custom app';
|
||||
let auditLogFile = path.join('./e2e/download/', 'Audit.pdf');
|
||||
let appModel;
|
||||
|
||||
beforeAll(async (done) => {
|
||||
let users = new UsersActions();
|
||||
let apps = new AppsActions();
|
||||
|
||||
this.alfrescoJsApi = new AlfrescoApi({
|
||||
provider: 'BPM',
|
||||
hostBpm: TestConfig.adf.url
|
||||
});
|
||||
|
||||
await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
||||
|
||||
let newTenant = await this.alfrescoJsApi.activiti.adminTenantsApi.createTenant(new Tenant());
|
||||
|
||||
processUserModel = await users.createApsUser(this.alfrescoJsApi, newTenant.id);
|
||||
|
||||
await this.alfrescoJsApi.login(processUserModel.email, processUserModel.password);
|
||||
|
||||
this.alfrescoJsApi.activiti.taskApi.createNewTask({name: taskTaskApp});
|
||||
|
||||
appModel = await apps.importPublishDeployApp(this.alfrescoJsApi, app.file_location);
|
||||
|
||||
loginPage.loginToProcessServicesUsingUserModel(processUserModel);
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
it('[C260386] Should Audit file be downloaded when clicking on Task Audit log icon on a standalone running task', () => {
|
||||
processServicesPage.goToProcessServices().goToTaskApp().clickTasksButton();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(taskTaskApp);
|
||||
|
||||
taskPage.usingTaskDetails().clickAuditLogButton();
|
||||
expect(Util.fileExists(auditLogFile, 10)).toBe(true);
|
||||
});
|
||||
|
||||
it('[C260389] Should Audit file be downloaded when clicking on Task Audit log icon on a standalone completed task', () => {
|
||||
processServicesPage.goToProcessServices().goToTaskApp().clickTasksButton();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(taskTaskApp);
|
||||
|
||||
taskPage.completeTaskNoForm();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.COMPL_TASKS);
|
||||
taskPage.usingTasksListPage().selectTaskFromTasksList(taskTaskApp);
|
||||
expect(taskPage.usingFormFields().getCompletedTaskNoFormMessage()).toEqual('Task ' + taskTaskApp + ' completed');
|
||||
|
||||
taskPage.usingTaskDetails().clickAuditLogButton();
|
||||
expect(Util.fileExists(auditLogFile, 20)).toBe(true);
|
||||
});
|
||||
|
||||
it('[C263944] Should Audit file be downloaded when clicking on Task Audit log icon on a custom app standalone completed task', () => {
|
||||
processServicesPage.goToProcessServices().goToTaskApp().clickTasksButton();
|
||||
|
||||
taskPage.createNewTask().addName(taskCompleteCustomApp).clickStartButton();
|
||||
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(taskCompleteCustomApp);
|
||||
|
||||
taskPage.completeTaskNoForm();
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.COMPL_TASKS);
|
||||
taskPage.usingTasksListPage().selectTaskFromTasksList(taskCompleteCustomApp);
|
||||
expect(taskPage.usingFormFields().getCompletedTaskNoFormMessage()).toEqual('Task ' + taskCompleteCustomApp + ' completed');
|
||||
|
||||
taskPage.usingTaskDetails().clickAuditLogButton();
|
||||
expect(Util.fileExists(auditLogFile, 20)).toBe(true);
|
||||
});
|
||||
|
||||
it('[C263943] Should Audit file be downloaded when clicking on Task Audit log icon on a custom app standalone running task', () => {
|
||||
processServicesPage.goToProcessServices().goToApp(appModel.name).clickTasksButton();
|
||||
|
||||
taskPage.createNewTask().addName(taskCustomApp).clickStartButton();
|
||||
|
||||
taskPage.usingFiltersPage().goToFilter(CONSTANTS.TASKFILTERS.MY_TASKS);
|
||||
taskPage.usingTasksListPage().checkTaskIsDisplayedInTasksList(taskCustomApp);
|
||||
|
||||
taskPage.usingTaskDetails().clickAuditLogButton();
|
||||
expect(Util.fileExists(auditLogFile, 10)).toBe(true);
|
||||
});
|
||||
|
||||
});
|
178
e2e/process-services/task_filters_component.e2e.ts
Normal file
178
e2e/process-services/task_filters_component.e2e.ts
Normal file
@@ -0,0 +1,178 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import TestConfig = require('../test.config');
|
||||
import resources = require('../util/resources');
|
||||
import LoginPage = require('../pages/adf/loginPage');
|
||||
import NavigationBarPage = require('../pages/adf/navigationBarPage');
|
||||
import ProcessServicesPage = require('../pages/adf/process_services/processServicesPage');
|
||||
import TasksPage = require('../pages/adf/process_services/tasksPage');
|
||||
import TasksListPage = require('../pages/adf/process_services/tasksListPage');
|
||||
import TaskFiltersPage = require('../pages/adf/process_services/taskFiltersPage');
|
||||
import TaskDetailsPage = require('../pages/adf/process_services/taskDetailsPage');
|
||||
|
||||
import AlfrescoApi = require('alfresco-js-api-node');
|
||||
import { AppsActions } from '../actions/APS/apps.actions';
|
||||
import { UsersActions } from '../actions/users.actions';
|
||||
|
||||
describe('Task Filters Test', () => {
|
||||
|
||||
let loginPage = new LoginPage();
|
||||
let navigationBarPage = new NavigationBarPage();
|
||||
let processServicesPage = new ProcessServicesPage();
|
||||
let tasksPage = new TasksPage();
|
||||
let tasksListPage = new TasksListPage();
|
||||
let taskFiltersPage = new TaskFiltersPage();
|
||||
let taskDetailsPage = new TaskDetailsPage();
|
||||
|
||||
let app = resources.Files.APP_WITH_DATE_FIELD_FORM;
|
||||
|
||||
beforeAll(async (done) => {
|
||||
let apps = new AppsActions();
|
||||
let users = new UsersActions();
|
||||
|
||||
this.alfrescoJsApi = new AlfrescoApi({
|
||||
provider: 'BPM',
|
||||
hostBpm: TestConfig.adf.url
|
||||
});
|
||||
|
||||
await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
||||
|
||||
let user = await users.createTenantAndUser(this.alfrescoJsApi);
|
||||
|
||||
await this.alfrescoJsApi.login(user.email, user.password);
|
||||
|
||||
await apps.importPublishDeployApp(this.alfrescoJsApi, app.file_location);
|
||||
|
||||
await loginPage.loginToProcessServicesUsingUserModel(user);
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
beforeEach(async (done) => {
|
||||
navigationBarPage.clickProcessServicesButton();
|
||||
processServicesPage.checkApsContainer();
|
||||
processServicesPage.goToApp(app.title);
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
it('[C260330] Should display task list when app is in task section', () => {
|
||||
tasksPage.clickOnCreateButton();
|
||||
taskFiltersPage.clickNewTaskButton();
|
||||
tasksPage.createNewTask().addName('Test').clickStartButton();
|
||||
taskFiltersPage.clickMyTaskTaskItem();
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test');
|
||||
expect(taskFiltersPage.checkActiveFilterActive()).toBe('My Tasks');
|
||||
expect(taskDetailsPage.checkTaskDetailsDisplayed()).toBeDefined();
|
||||
|
||||
taskFiltersPage.clickQueuedTaskItem();
|
||||
expect(taskFiltersPage.checkActiveFilterActive()).toBe('Queued Tasks');
|
||||
tasksListPage.checkTaskIsNotDisplayedInTasksList('Test');
|
||||
expect(taskDetailsPage.checkTaskDetailsEmpty()).toBeDefined();
|
||||
|
||||
taskFiltersPage.clickInvolvedTaskItem();
|
||||
expect(taskFiltersPage.checkActiveFilterActive()).toBe('Involved Tasks');
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test');
|
||||
expect( taskDetailsPage.checkTaskDetailsDisplayed()).toBeDefined();
|
||||
|
||||
taskFiltersPage.clickCompletedTaskItem();
|
||||
expect(taskFiltersPage.checkActiveFilterActive()).toBe('Completed Tasks');
|
||||
tasksListPage.checkTaskIsNotDisplayedInTasksList('Test');
|
||||
expect(taskDetailsPage.checkTaskDetailsEmpty()).toBeDefined();
|
||||
});
|
||||
|
||||
it('[C260348] Should display task list when app is in task section', () => {
|
||||
expect(taskFiltersPage.checkMyTasksItem()).toBeDefined();
|
||||
expect(taskFiltersPage.checkQueuedTaskItem()).toBeDefined();
|
||||
expect(taskFiltersPage.checkInvolvedTaskItem()).toBeDefined();
|
||||
expect(taskFiltersPage.checkCompletedTaskItem()).toBeDefined();
|
||||
expect(taskFiltersPage.checkTasksAccordionExtended()).toBeDefined();
|
||||
|
||||
taskFiltersPage.clickTasksAccordionButton();
|
||||
expect(taskFiltersPage.checkTasksAccordionClosed()).toBeDefined();
|
||||
|
||||
taskFiltersPage.clickTasksAccordionButton();
|
||||
expect(taskFiltersPage.checkMyTasksItem()).toBeDefined();
|
||||
expect(taskFiltersPage.checkQueuedTaskItem()).toBeDefined();
|
||||
expect(taskFiltersPage.checkInvolvedTaskItem()).toBeDefined();
|
||||
expect(taskFiltersPage.checkCompletedTaskItem()).toBeDefined();
|
||||
|
||||
tasksPage.clickOnCreateButton();
|
||||
taskFiltersPage.clickNewTaskButton();
|
||||
tasksPage.createNewTask().addName('Test').clickStartButton();
|
||||
taskFiltersPage.clickMyTaskTaskItem();
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test');
|
||||
expect(taskFiltersPage.checkActiveFilterActive()).toBe('My Tasks');
|
||||
expect(taskDetailsPage.checkTaskDetailsDisplayed()).toBeDefined();
|
||||
|
||||
taskFiltersPage.clickQueuedTaskItem();
|
||||
expect(taskFiltersPage.checkActiveFilterActive()).toBe('Queued Tasks');
|
||||
expect(taskFiltersPage.checkEmptyTaskList()).toBe('No Tasks Found');
|
||||
expect(taskFiltersPage.checkEmptyTaskDetails()).toBe('No task details found');
|
||||
|
||||
taskFiltersPage.clickInvolvedTaskItem();
|
||||
expect(taskFiltersPage.checkActiveFilterActive()).toBe('Involved Tasks');
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test');
|
||||
expect(taskDetailsPage.checkTaskDetailsDisplayed()).toBeDefined();
|
||||
|
||||
taskFiltersPage.clickCompletedTaskItem();
|
||||
expect(taskFiltersPage.checkActiveFilterActive()).toBe('Completed Tasks');
|
||||
expect(taskFiltersPage.checkEmptyTaskList()).toBe('No Tasks Found');
|
||||
expect(taskFiltersPage.checkEmptyTaskDetails()).toBe('No task details found');
|
||||
});
|
||||
|
||||
it('[C260349] Should display task list when app is in task section', () => {
|
||||
tasksPage.clickOnCreateButton();
|
||||
taskFiltersPage.clickNewTaskButton();
|
||||
tasksPage.createNewTask().addName('Test1').clickStartButton();
|
||||
taskDetailsPage.clickCompleteTask();
|
||||
tasksPage.clickOnCreateButton();
|
||||
taskFiltersPage.clickNewTaskButton();
|
||||
tasksPage.createNewTask().addName('Test2').clickStartButton();
|
||||
taskDetailsPage.clickCompleteTask();
|
||||
tasksPage.clickOnCreateButton();
|
||||
taskFiltersPage.clickNewTaskButton();
|
||||
tasksPage.createNewTask().addName('Test3').clickStartButton();
|
||||
|
||||
tasksPage.clickOnCreateButton();
|
||||
taskFiltersPage.clickNewTaskButton();
|
||||
tasksPage.createNewTask().addName('Test4').clickStartButton();
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test4');
|
||||
tasksListPage.checkHighlightedTaskInTasksList('Test4');
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test3');
|
||||
taskDetailsPage.checkTaskDetailsDisplayed();
|
||||
|
||||
tasksListPage.clickSortByName();
|
||||
expect(tasksListPage.firstTaskOnTaskList()).toBe('Test3');
|
||||
tasksListPage.clickSortByName();
|
||||
expect(tasksListPage.firstTaskOnTaskList()).toBe('Test4');
|
||||
|
||||
taskFiltersPage.clickCompletedTaskItem();
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test1');
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test2');
|
||||
expect(tasksListPage.firstTaskOnTaskList()).toBe('Test2');
|
||||
|
||||
tasksListPage.clickSortByName();
|
||||
expect(tasksListPage.firstTaskOnTaskList()).toBe('Test1');
|
||||
|
||||
taskFiltersPage.clickInvolvedTaskItem();
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test3');
|
||||
tasksListPage.checkTaskIsDisplayedInTasksList('Test4');
|
||||
});
|
||||
|
||||
});
|
Reference in New Issue
Block a user