mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-10-01 14:41:14 +00:00
[ACS-9297] [ACA] [E2E] Update test IDs to match the XRAY test cases IDs (#4429)
* [ACS-9297] [E2E] Authentication and List Views updated * [ACS-9297] navigation tests IDs updated * [ACS-9297] updated pagination IDs * [ACS-9297] updated download actions ids * [ACS-9297] Updated upload-download actions IDs & changed the location of viewer-version-actions tests to match XRAY * [ACS-9297] updated copy-move-actions IDs * [ACS-9297] Updated delete-actions IDs * [ACS-9297] updated create-actions IDs * [ACS-9297] Updated library-actions IDs * [ACS_9297] Updated share IDs * [ACS-9297] Special Permissions Updated IDs * [ACS-9297] Updated viewer IDs * [ACS-9297] Updated comments IDs * [ACS-9297] Updated Search IDs * [ACS-9297] Updated the remaning IDs * [ACS-9297] one tests excluded one duplicated deleted * [ACS-9297] fixing rebase mistakes 1
This commit is contained in:
@@ -81,13 +81,13 @@ test.describe('Folders - available actions : ', () => {
|
||||
await personalFiles.navigate({ remoteUrl: `#/personal-files/${parentId}` });
|
||||
});
|
||||
|
||||
test('Folder not favorite - [C213123]', async ({ personalFiles }) => {
|
||||
test('[XAT-4637] Actions for a folder, not favorite', async ({ personalFiles }) => {
|
||||
await personalFiles.dataTable.getRowByName(testData.folderFile.name).click({ button: 'right' });
|
||||
await personalFiles.matMenu.verifyActualMoreActions(testData.folderFile.contextMenu);
|
||||
await checkActionsAvailable(personalFiles, testData.folderFile.name, testData.folderFile.toolbarPrimary, testData.folderFile.toolbarMore);
|
||||
});
|
||||
|
||||
test('Folder favorite - [C280451]', async ({ personalFiles }) => {
|
||||
test('[XAT-4638] Actions for a folder, favorite', async ({ personalFiles }) => {
|
||||
await personalFiles.dataTable.getRowByName(testData.folderFavFile.name).click({ button: 'right' });
|
||||
await personalFiles.matMenu.verifyActualMoreActions(testData.folderFavFile.contextMenu);
|
||||
await checkActionsAvailable(
|
||||
@@ -98,7 +98,7 @@ test.describe('Folders - available actions : ', () => {
|
||||
);
|
||||
});
|
||||
|
||||
test('multiple folders - [C280459]', async ({ personalFiles }) => {
|
||||
test('[XAT-4642] Actions on multiple folders', async ({ personalFiles }) => {
|
||||
await personalFiles.dataTable.selectItems(testData.folderFavFile.name, testData.folderFile.name);
|
||||
await personalFiles.dataTable.getRowByName(testData.folderFavFile.name).click({ button: 'right' });
|
||||
await personalFiles.page.reload({ waitUntil: 'load' });
|
||||
@@ -106,7 +106,7 @@ test.describe('Folders - available actions : ', () => {
|
||||
await checkMultipleSelActionsAvailable(personalFiles, testData.multipleSelFile.toolbarPrimary, testData.multipleSelFile.toolbarMore);
|
||||
});
|
||||
|
||||
test('both files and folders - [C280460]', async ({ personalFiles }) => {
|
||||
test('[XAT-4643] Actions on multiple selection - files and folders', async ({ personalFiles }) => {
|
||||
await personalFiles.dataTable.selectItems(testData.file.name, testData.folderFile.name);
|
||||
await personalFiles.dataTable.getRowByName(testData.folderFile.name).click({ button: 'right' });
|
||||
await personalFiles.matMenu.verifyActualMoreActions(testData.multipleSelFile.contextMenu);
|
||||
|
Reference in New Issue
Block a user