@umbraco/playwright-testhelpers 16.0.10 → 16.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/helpers/ContentUiHelper.js +2 -2
- package/dist/lib/helpers/ContentUiHelper.js.map +1 -1
- package/dist/lib/helpers/CurrentUserProfileUiHelper.js +1 -1
- package/dist/lib/helpers/CurrentUserProfileUiHelper.js.map +1 -1
- package/dist/lib/helpers/DataTypeUiHelper.js +4 -4
- package/dist/lib/helpers/DataTypeUiHelper.js.map +1 -1
- package/dist/lib/helpers/DictionaryUiHelper.js +1 -1
- package/dist/lib/helpers/DictionaryUiHelper.js.map +1 -1
- package/dist/lib/helpers/MediaUiHelper.js +1 -1
- package/dist/lib/helpers/MediaUiHelper.js.map +1 -1
- package/dist/lib/helpers/MemberUiHelper.d.ts +2 -0
- package/dist/lib/helpers/MemberUiHelper.js +6 -0
- package/dist/lib/helpers/MemberUiHelper.js.map +1 -1
- package/dist/lib/helpers/PartialViewUiHelper.js +1 -1
- package/dist/lib/helpers/PartialViewUiHelper.js.map +1 -1
- package/dist/lib/helpers/ScriptUiHelper.js +2 -2
- package/dist/lib/helpers/ScriptUiHelper.js.map +1 -1
- package/dist/lib/helpers/StylesheetUiHelper.js +1 -1
- package/dist/lib/helpers/StylesheetUiHelper.js.map +1 -1
- package/dist/lib/helpers/UiBaseLocators.d.ts +23 -3
- package/dist/lib/helpers/UiBaseLocators.js +83 -20
- package/dist/lib/helpers/UiBaseLocators.js.map +1 -1
- package/dist/lib/helpers/UserUiHelper.js +1 -1
- package/dist/lib/helpers/UserUiHelper.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -178,7 +178,7 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
|
|
|
178
178
|
this.saveAndPublishBtn = page.getByLabel('Save And Publish');
|
|
179
179
|
this.publishBtn = page.getByLabel(/^Publish(…)?$/);
|
|
180
180
|
this.unpublishBtn = page.getByLabel(/^Unpublish(…)?$/);
|
|
181
|
-
this.actionMenuForContentBtn = page.locator('#header
|
|
181
|
+
this.actionMenuForContentBtn = page.locator('#header #action-modal');
|
|
182
182
|
this.openedModal = page.locator('uui-modal-container[backdrop]');
|
|
183
183
|
this.textstringTxt = page.locator('umb-property-editor-ui-text-box #input');
|
|
184
184
|
this.reloadChildrenThreeDotsBtn = page.getByRole('button', { name: 'Reload children…' });
|
|
@@ -301,7 +301,7 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
|
|
|
301
301
|
this.workspaceEditTab = page.locator('umb-content-workspace-view-edit-tab');
|
|
302
302
|
this.blockWorkspaceEditTab = page.locator('umb-block-workspace-view-edit-tab');
|
|
303
303
|
this.workspaceEditProperties = page.locator('umb-content-workspace-view-edit-properties');
|
|
304
|
-
this.openActionsMenu = page.
|
|
304
|
+
this.openActionsMenu = page.locator('#action-menu');
|
|
305
305
|
this.replaceExactBtn = page.getByRole('button', { name: 'Replace', exact: true });
|
|
306
306
|
this.clipboardEntryPicker = page.locator('umb-clipboard-entry-picker');
|
|
307
307
|
this.blockGridAreasContainer = page.locator('umb-block-grid-areas-container');
|