@shopware-ag/acceptance-test-suite 12.0.1 → 12.0.2
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.mjs +3 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7793,7 +7793,7 @@ class ProductDetail {
|
|
|
7793
7793
|
if (satisfies(instanceMeta.version, "<6.7")) {
|
|
7794
7794
|
this.releaseDateInput = page.locator(".sw-product-detail-base__labelling-card").locator(".form-control");
|
|
7795
7795
|
} else {
|
|
7796
|
-
this.releaseDateInput = page.locator(".
|
|
7796
|
+
this.releaseDateInput = page.locator(".dp__input");
|
|
7797
7797
|
}
|
|
7798
7798
|
this.uploadMediaButton = page.getByRole("button", { name: translate("administration:product:buttons.uploadFile") });
|
|
7799
7799
|
this.coverImage = page.locator(".sw-product-media-form__cover-image");
|
|
@@ -11010,8 +11010,10 @@ const BulkEditProducts = test$e.extend({
|
|
|
11010
11010
|
}
|
|
11011
11011
|
if (changes["releaseDate"] != null) {
|
|
11012
11012
|
await AdminProductBulkEdit.changeReleaseDateCheckbox.click();
|
|
11013
|
+
await AdminProductBulkEdit.releaseDateInput.click();
|
|
11013
11014
|
await AdminProductBulkEdit.releaseDateInput.fill(changes["releaseDate"].value);
|
|
11014
11015
|
await AdminProductBulkEdit.releaseDateInput.press("Enter");
|
|
11016
|
+
expect(await AdminProductBulkEdit.releaseDateInput.inputValue()).toBe(changes["releaseDate"].value);
|
|
11015
11017
|
}
|
|
11016
11018
|
if (changes["stock"] != null) {
|
|
11017
11019
|
await AdminProductBulkEdit.changeStockCheckbox.click();
|