@shopware-ag/acceptance-test-suite 8.2.0 → 8.2.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 +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4860,7 +4860,7 @@ class ProductBulkEdit {
|
|
|
4860
4860
|
this.grossPriceInput = this.changePriceRow.getByPlaceholder("Enter gross price...");
|
|
4861
4861
|
this.changeReleaseDateRow = page.locator(".sw-bulk-edit-change-field-releaseDate");
|
|
4862
4862
|
this.changeReleaseDateCheckbox = this.changeReleaseDateRow.getByRole("checkbox");
|
|
4863
|
-
this.releaseDateInput = this.changeReleaseDateRow.
|
|
4863
|
+
this.releaseDateInput = this.changeReleaseDateRow.getByRole("textbox").last();
|
|
4864
4864
|
this.changeStockRow = page.locator(".sw-bulk-edit-change-field-stock");
|
|
4865
4865
|
this.changeStockCheckbox = this.changeStockRow.getByRole("checkbox");
|
|
4866
4866
|
this.stockChangeMethodDropdown = this.changeStockRow.locator(".sw-single-select__selection-text");
|
|
@@ -4880,7 +4880,7 @@ class ProductBulkEdit {
|
|
|
4880
4880
|
this.changeSalesChannelCheckbox = this.changeSalesChannelRow.getByRole("checkbox");
|
|
4881
4881
|
this.salesChannelChangeMethodDropdown = this.changeSalesChannelRow.locator(".sw-single-select__selection-text");
|
|
4882
4882
|
this.salesChannelChangeMethodInput = this.changeSalesChannelRow.locator(".sw-single-select__selection-input");
|
|
4883
|
-
this.salesChannelInput = this.changeSalesChannelRow.getByRole("
|
|
4883
|
+
this.salesChannelInput = this.changeSalesChannelRow.getByRole("combobox");
|
|
4884
4884
|
this.applyChangesButton = page.getByRole("button", { name: "Apply changes" });
|
|
4885
4885
|
this.confirmModal = page.locator(".sw-bulk-edit-save-modal");
|
|
4886
4886
|
this.confirmModalApplyChangesButton = this.confirmModal.getByRole("button", { name: "Apply changes" });
|