mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-08-21 18:08:30 +00:00
[ACS-8688] export playwright shared lib (#4068)
* [ACS-8688] export playwright shared lib * [ACS-8688] changes name * [ACS-8688] changes name * [ACS-8688] add lint file and fix lint issue * [ACS-8688] test fix * added ng package file
This commit is contained in:
@@ -67,8 +67,8 @@ export class AcaHeader extends BaseComponent {
|
||||
}
|
||||
|
||||
async verifyToolbarPrimaryActions(expectedToolbarPrimary: string[]): Promise<void> {
|
||||
let buttons = await this.page.$$('aca-toolbar button');
|
||||
let actualPrimaryActions: string[] = await Promise.all(
|
||||
const buttons = await this.page.$$('aca-toolbar button');
|
||||
const actualPrimaryActions: string[] = await Promise.all(
|
||||
buttons.map(async (button) => {
|
||||
const title = await button.getAttribute('title');
|
||||
return title || '';
|
||||
|
Reference in New Issue
Block a user