@shopware-ag/acceptance-test-suite 11.1.1 → 11.1.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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1620,6 +1620,7 @@ declare class FirstRunWizard implements PageObject {
|
|
|
1620
1620
|
readonly salesChannelSelectionMultiSelect: Locator;
|
|
1621
1621
|
readonly smtpServerTitle: Locator;
|
|
1622
1622
|
readonly smtpServerFields: Locator;
|
|
1623
|
+
readonly smtpServerFieldInputs: Locator;
|
|
1623
1624
|
readonly payPalPaymethods: Locator;
|
|
1624
1625
|
readonly payPalInfoCard: Locator;
|
|
1625
1626
|
readonly emailAddressInputField: Locator;
|
package/dist/index.d.ts
CHANGED
|
@@ -1620,6 +1620,7 @@ declare class FirstRunWizard implements PageObject {
|
|
|
1620
1620
|
readonly salesChannelSelectionMultiSelect: Locator;
|
|
1621
1621
|
readonly smtpServerTitle: Locator;
|
|
1622
1622
|
readonly smtpServerFields: Locator;
|
|
1623
|
+
readonly smtpServerFieldInputs: Locator;
|
|
1623
1624
|
readonly payPalPaymethods: Locator;
|
|
1624
1625
|
readonly payPalInfoCard: Locator;
|
|
1625
1626
|
readonly emailAddressInputField: Locator;
|
package/dist/index.mjs
CHANGED
|
@@ -4281,6 +4281,7 @@ class FirstRunWizard {
|
|
|
4281
4281
|
__publicField$p(this, "salesChannelSelectionMultiSelect");
|
|
4282
4282
|
__publicField$p(this, "smtpServerTitle");
|
|
4283
4283
|
__publicField$p(this, "smtpServerFields");
|
|
4284
|
+
__publicField$p(this, "smtpServerFieldInputs");
|
|
4284
4285
|
__publicField$p(this, "payPalPaymethods");
|
|
4285
4286
|
__publicField$p(this, "payPalInfoCard");
|
|
4286
4287
|
__publicField$p(this, "emailAddressInputField");
|
|
@@ -4317,6 +4318,7 @@ class FirstRunWizard {
|
|
|
4317
4318
|
this.smtpServerButton = page.getByText("Configure own SMTP server", { exact: true });
|
|
4318
4319
|
this.smtpServerTitle = page.getByText("SMTP server", { exact: true });
|
|
4319
4320
|
this.smtpServerFields = page.locator(".sw-field");
|
|
4321
|
+
this.smtpServerFieldInputs = page.locator(".mt-field");
|
|
4320
4322
|
this.payPalSetupHeader = page.locator(".sw-modal__title", { hasText: "Setup PayPal" });
|
|
4321
4323
|
this.payPalPaymethods = page.locator(".paymethod");
|
|
4322
4324
|
this.payPalInfoCard = page.locator(".sw-first-run-wizard-paypal-info");
|