mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Disable control flow e2e ADF (#4954)
* update project script possible different JS-API * first commit no controll flow * second commit no controll flow * third commit no controll flow * 4 commit no controll flow * 5 commit no controll flow * 6 commit no controll flow * 7 commit no controll flow * 8 commit no controll flow * 9 commit no controll flow * 10 commit no controll flow * 11 commit no controll flow * 12 commit no controll flow * 13 commit no controll flow * 14 commit no controll flow * 15 commit no controll flow * 16 commit no controll flow * 17 commit no controll flow * 18 commit no controll flow * 19 commit no controll flow * 20 commit no controll flow * remove wdpromise, protractor promise and deferred promises * - fixed some incorrect “expect” calls - fixed some matchers - removed “return this;” when not needed - added a few more await-s * forgot a file * fix some failing tests * replaced driver calls with browser calls and enabled back waitForAngular * fix rightClick methods and hopefully some tests * fix settings-component * some more fixes for core and content tests * try to fix some more issues * linting * revert some changes, allowing download on headless chrome won’t work with multiple browser instances * fixes for Search tests * try to remove some wait calls * fix build * increase allScriptsTimeout and try another protractor and web driver version * improve navigation methods * some fixes for notification history and login sso * forgot a space * fix packages and enable some screenshots * navigation bar fixes * fix some test * some fixes for notification history and navigation bar use correct visibility method in attachFileWidget test * fix searching and another fix for navigation * try solve sso login * some more fixes * refactor async forEach into for..of * try fix for search tests * resolve rebabse problems * remove install * fix lint * fix core e2e * fix core e2e * fix core e2e * fix ps tests * fix some tests * fix core e2e * fix core e2e * fix core * fix some issues PS * fix core * fix core * fix some ps test * fix rebase issues * remove save * fix url regressed after rebase * fix url regressed after rebase * fix ps and core * fix lint * more parallel e2e ps * fix some ps cloud test * some cloud fix * fix lint * fix some test * remove files to be ignored * out-tsc * improve one cs test * fix candidate base app * fix ps test * remove click function * clean methods alrady present in browser action * try ugly wait * move wait * remove duplicate call * remove underscore * fix after review * fix imports * minor cosmetic fixes * fix comments test
This commit is contained in:
@@ -32,7 +32,7 @@ describe('Datatable component - selection', () => {
|
||||
const navigationBarPage = new NavigationBarPage();
|
||||
const dataTableComponent = new DataTableComponentPage();
|
||||
|
||||
beforeAll(async (done) => {
|
||||
beforeAll(async () => {
|
||||
this.alfrescoJsApi = new AlfrescoApi({
|
||||
provider: 'ECM',
|
||||
hostEcm: browser.params.testConfig.adf_acs.host
|
||||
@@ -46,60 +46,59 @@ describe('Datatable component - selection', () => {
|
||||
|
||||
await navigationBarPage.navigateToDatatable();
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await navigationBarPage.clickLogoutButton();
|
||||
});
|
||||
|
||||
it('[C213258] Should be possible change the selection modes when change the selectionMode property', () => {
|
||||
dataTablePage.selectRow('2');
|
||||
dataTableComponent.checkRowIsSelected('Id', '2');
|
||||
expect(dataTablePage.getNumberOfSelectedRows()).toEqual(1);
|
||||
dataTablePage.selectRow('3');
|
||||
dataTableComponent.checkRowIsSelected('Id', '3');
|
||||
expect(dataTablePage.getNumberOfSelectedRows()).toEqual(1);
|
||||
dataTablePage.selectSelectionMode('Multiple');
|
||||
dataTablePage.selectRow('1');
|
||||
dataTableComponent.checkRowIsSelected('Id', '1');
|
||||
dataTablePage.selectRowWithKeyboard('3');
|
||||
dataTableComponent.checkRowIsSelected('Id', '1');
|
||||
dataTableComponent.checkRowIsSelected('Id', '3');
|
||||
dataTablePage.checkRowIsNotSelected('2');
|
||||
dataTablePage.checkRowIsNotSelected('4');
|
||||
dataTablePage.selectSelectionMode('None');
|
||||
dataTablePage.selectRow('1');
|
||||
dataTablePage.checkNoRowIsSelected();
|
||||
it('[C213258] Should be possible change the selection modes when change the selectionMode property', async () => {
|
||||
await dataTablePage.selectRow('2');
|
||||
await dataTableComponent.checkRowIsSelected('Id', '2');
|
||||
await expect(await dataTablePage.getNumberOfSelectedRows()).toEqual(1);
|
||||
await dataTablePage.selectRow('3');
|
||||
await dataTableComponent.checkRowIsSelected('Id', '3');
|
||||
await expect(await dataTablePage.getNumberOfSelectedRows()).toEqual(1);
|
||||
await dataTablePage.selectSelectionMode('Multiple');
|
||||
await dataTablePage.selectRow('1');
|
||||
await dataTableComponent.checkRowIsSelected('Id', '1');
|
||||
await dataTablePage.selectRowWithKeyboard('3');
|
||||
await dataTableComponent.checkRowIsSelected('Id', '1');
|
||||
await dataTableComponent.checkRowIsSelected('Id', '3');
|
||||
await dataTablePage.checkRowIsNotSelected('2');
|
||||
await dataTablePage.checkRowIsNotSelected('4');
|
||||
await dataTablePage.selectSelectionMode('None');
|
||||
await dataTablePage.selectRow('1');
|
||||
await dataTablePage.checkNoRowIsSelected();
|
||||
});
|
||||
|
||||
it('[C260059] Should be possible select multiple row when multiselect is true', () => {
|
||||
dataTablePage.clickMultiSelect();
|
||||
dataTablePage.clickCheckbox('1');
|
||||
dataTablePage.checkRowIsChecked('1');
|
||||
dataTablePage.clickCheckbox('3');
|
||||
dataTablePage.checkRowIsChecked('3');
|
||||
dataTablePage.checkRowIsNotChecked('2');
|
||||
dataTablePage.checkRowIsNotChecked('4');
|
||||
dataTablePage.clickCheckbox('3');
|
||||
dataTablePage.checkRowIsNotChecked('3');
|
||||
dataTablePage.checkRowIsChecked('1');
|
||||
it('[C260059] Should be possible select multiple row when multiselect is true', async () => {
|
||||
await dataTablePage.clickMultiSelect();
|
||||
await dataTablePage.clickCheckbox('1');
|
||||
await dataTablePage.checkRowIsChecked('1');
|
||||
await dataTablePage.clickCheckbox('3');
|
||||
await dataTablePage.checkRowIsChecked('3');
|
||||
await dataTablePage.checkRowIsNotChecked('2');
|
||||
await dataTablePage.checkRowIsNotChecked('4');
|
||||
await dataTablePage.clickCheckbox('3');
|
||||
await dataTablePage.checkRowIsNotChecked('3');
|
||||
await dataTablePage.checkRowIsChecked('1');
|
||||
});
|
||||
|
||||
it('[C260058] Should be possible select all the rows when multiselect is true', () => {
|
||||
dataTablePage.checkAllRows();
|
||||
dataTablePage.checkRowIsChecked('1');
|
||||
dataTablePage.checkRowIsChecked('2');
|
||||
dataTablePage.checkRowIsChecked('3');
|
||||
dataTablePage.checkRowIsChecked('4');
|
||||
it('[C260058] Should be possible select all the rows when multiselect is true', async () => {
|
||||
await dataTablePage.checkAllRows();
|
||||
await dataTablePage.checkRowIsChecked('1');
|
||||
await dataTablePage.checkRowIsChecked('2');
|
||||
await dataTablePage.checkRowIsChecked('3');
|
||||
await dataTablePage.checkRowIsChecked('4');
|
||||
});
|
||||
|
||||
it('[C277262] Should be possible reset the selected row when click on the reset button', () => {
|
||||
dataTablePage.checkRowIsChecked('1');
|
||||
dataTablePage.checkRowIsChecked('2');
|
||||
dataTablePage.checkRowIsChecked('3');
|
||||
dataTablePage.checkRowIsChecked('4');
|
||||
dataTablePage.clickReset();
|
||||
dataTablePage.checkNoRowIsSelected();
|
||||
it('[C277262] Should be possible reset the selected row when click on the reset button', async () => {
|
||||
await dataTablePage.checkRowIsChecked('1');
|
||||
await dataTablePage.checkRowIsChecked('2');
|
||||
await dataTablePage.checkRowIsChecked('3');
|
||||
await dataTablePage.checkRowIsChecked('4');
|
||||
await dataTablePage.clickReset();
|
||||
await dataTablePage.checkNoRowIsSelected();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user