@shopware-ag/acceptance-test-suite 4.1.0 → 5.0.0
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/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +5 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1284,9 +1284,10 @@ declare class LandingPageCreate implements PageObject {
|
|
|
1284
1284
|
readonly assignLayoutButton: Locator;
|
|
1285
1285
|
readonly searchLayoutInput: Locator;
|
|
1286
1286
|
readonly layoutItems: Locator;
|
|
1287
|
-
readonly
|
|
1287
|
+
readonly layoutAddButton: Locator;
|
|
1288
1288
|
readonly layoutEmptyState: Locator;
|
|
1289
1289
|
readonly createNewLayoutButton: Locator;
|
|
1290
|
+
readonly layoutCheckboxes: Locator;
|
|
1290
1291
|
constructor(page: Page);
|
|
1291
1292
|
url(): string;
|
|
1292
1293
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1284,9 +1284,10 @@ declare class LandingPageCreate implements PageObject {
|
|
|
1284
1284
|
readonly assignLayoutButton: Locator;
|
|
1285
1285
|
readonly searchLayoutInput: Locator;
|
|
1286
1286
|
readonly layoutItems: Locator;
|
|
1287
|
-
readonly
|
|
1287
|
+
readonly layoutAddButton: Locator;
|
|
1288
1288
|
readonly layoutEmptyState: Locator;
|
|
1289
1289
|
readonly createNewLayoutButton: Locator;
|
|
1290
|
+
readonly layoutCheckboxes: Locator;
|
|
1290
1291
|
constructor(page: Page);
|
|
1291
1292
|
url(): string;
|
|
1292
1293
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -3530,9 +3530,10 @@ class LandingPageCreate {
|
|
|
3530
3530
|
__publicField$4(this, "assignLayoutButton");
|
|
3531
3531
|
__publicField$4(this, "searchLayoutInput");
|
|
3532
3532
|
__publicField$4(this, "layoutItems");
|
|
3533
|
-
__publicField$4(this, "
|
|
3533
|
+
__publicField$4(this, "layoutAddButton");
|
|
3534
3534
|
__publicField$4(this, "layoutEmptyState");
|
|
3535
3535
|
__publicField$4(this, "createNewLayoutButton");
|
|
3536
|
+
__publicField$4(this, "layoutCheckboxes");
|
|
3536
3537
|
this.loadingSpinner = page.locator(".sw-loader");
|
|
3537
3538
|
this.saveLandingPageButton = page.getByRole("button", { name: "Save" });
|
|
3538
3539
|
this.nameInput = page.getByLabel("Name");
|
|
@@ -3548,7 +3549,9 @@ class LandingPageCreate {
|
|
|
3548
3549
|
const layoutModal = page.getByRole("dialog", { name: "Select layout" });
|
|
3549
3550
|
this.searchLayoutInput = layoutModal.getByPlaceholder("Search layouts...");
|
|
3550
3551
|
this.layoutItems = layoutModal.locator(".sw-cms-list-item");
|
|
3551
|
-
|
|
3552
|
+
const layoutTable = layoutModal.locator(".sw-data-grid__body");
|
|
3553
|
+
this.layoutCheckboxes = layoutTable.locator(".sw-field--checkbox__content");
|
|
3554
|
+
this.layoutAddButton = layoutModal.getByRole("button", { name: "Add" });
|
|
3552
3555
|
}
|
|
3553
3556
|
url() {
|
|
3554
3557
|
return `#/sw/category/landingPage/create/base`;
|