mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-6398] folder action-available e2e test (#3537)
* [ACS-6398] folder action-avilable test * review changes * review changes * review changes
This commit is contained in:
@@ -216,6 +216,16 @@ export class DataTableComponent extends BaseComponent {
|
||||
}
|
||||
}
|
||||
|
||||
async selectMultiItem(name: string, name2: string): Promise<void> {
|
||||
await this.page.keyboard.down('Meta');
|
||||
let row = this.getRowByName(name);
|
||||
await row.locator('[title="Size"]').click();
|
||||
await row.locator('.adf-datatable-selected').waitFor({ state: 'attached' });
|
||||
row = this.getRowByName(name2);
|
||||
await row.locator('[title="Size"]').click();
|
||||
await row.locator('.adf-datatable-selected').waitFor({ state: 'attached' });
|
||||
}
|
||||
|
||||
async hasCheckMarkIcon(itemName: string): Promise<boolean> {
|
||||
const row = this.getRowByName(itemName);
|
||||
return await row.locator('.adf-datatable-selected').isVisible();
|
||||
|
Reference in New Issue
Block a user