Fixed property e2e

This commit is contained in:
VitoAlbano 2024-05-15 13:36:08 +01:00
parent 1658837f26
commit e7f7ea0484

View File

@ -114,12 +114,7 @@ export class MetadataViewPage {
}
async clickOnPropertiesTab(): Promise<void> {
const propertiesTab = element(
by.cssContainingText(
`.adf-info-drawer-layout-content div${materialLocators.Tab.labels.class} div ${materialLocators.Tab.label.content.class}`,
`Properties`
)
);
const propertiesTab = element(by.cssContainingText(`.adf-info-drawer-layout-content ${materialLocators.Tab.labels.class}`, `Properties`));
await BrowserActions.click(propertiesTab);
}