@shopware-ag/acceptance-test-suite 11.1.2 → 11.1.3
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 +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.mjs +25 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1619,8 +1619,19 @@ declare class FirstRunWizard implements PageObject {
|
|
|
1619
1619
|
readonly salesChannelSelectionList: Locator;
|
|
1620
1620
|
readonly salesChannelSelectionMultiSelect: Locator;
|
|
1621
1621
|
readonly smtpServerTitle: Locator;
|
|
1622
|
+
/**
|
|
1623
|
+
* @deprecated - Use `smtpServerFieldInputs` instead.
|
|
1624
|
+
*/
|
|
1622
1625
|
readonly smtpServerFields: Locator;
|
|
1623
1626
|
readonly smtpServerFieldInputs: Locator;
|
|
1627
|
+
readonly smtpServerHostInput: Locator;
|
|
1628
|
+
readonly smtpServerPortInput: Locator;
|
|
1629
|
+
readonly smtpServerUsernameInput: Locator;
|
|
1630
|
+
readonly smtpServerPasswordInput: Locator;
|
|
1631
|
+
readonly smtpServerEncryptionInput: Locator;
|
|
1632
|
+
readonly smtpServerSenderAddressInput: Locator;
|
|
1633
|
+
readonly smtpServerDeliveryAddressInput: Locator;
|
|
1634
|
+
readonly smtpServerDisableEmailDeliveryCheckbox: Locator;
|
|
1624
1635
|
readonly payPalPaymethods: Locator;
|
|
1625
1636
|
readonly payPalInfoCard: Locator;
|
|
1626
1637
|
readonly emailAddressInputField: Locator;
|
package/dist/index.d.ts
CHANGED
|
@@ -1619,8 +1619,19 @@ declare class FirstRunWizard implements PageObject {
|
|
|
1619
1619
|
readonly salesChannelSelectionList: Locator;
|
|
1620
1620
|
readonly salesChannelSelectionMultiSelect: Locator;
|
|
1621
1621
|
readonly smtpServerTitle: Locator;
|
|
1622
|
+
/**
|
|
1623
|
+
* @deprecated - Use `smtpServerFieldInputs` instead.
|
|
1624
|
+
*/
|
|
1622
1625
|
readonly smtpServerFields: Locator;
|
|
1623
1626
|
readonly smtpServerFieldInputs: Locator;
|
|
1627
|
+
readonly smtpServerHostInput: Locator;
|
|
1628
|
+
readonly smtpServerPortInput: Locator;
|
|
1629
|
+
readonly smtpServerUsernameInput: Locator;
|
|
1630
|
+
readonly smtpServerPasswordInput: Locator;
|
|
1631
|
+
readonly smtpServerEncryptionInput: Locator;
|
|
1632
|
+
readonly smtpServerSenderAddressInput: Locator;
|
|
1633
|
+
readonly smtpServerDeliveryAddressInput: Locator;
|
|
1634
|
+
readonly smtpServerDisableEmailDeliveryCheckbox: Locator;
|
|
1624
1635
|
readonly payPalPaymethods: Locator;
|
|
1625
1636
|
readonly payPalInfoCard: Locator;
|
|
1626
1637
|
readonly emailAddressInputField: Locator;
|
package/dist/index.mjs
CHANGED
|
@@ -4280,8 +4280,19 @@ class FirstRunWizard {
|
|
|
4280
4280
|
__publicField$p(this, "salesChannelSelectionList");
|
|
4281
4281
|
__publicField$p(this, "salesChannelSelectionMultiSelect");
|
|
4282
4282
|
__publicField$p(this, "smtpServerTitle");
|
|
4283
|
+
/**
|
|
4284
|
+
* @deprecated - Use `smtpServerFieldInputs` instead.
|
|
4285
|
+
*/
|
|
4283
4286
|
__publicField$p(this, "smtpServerFields");
|
|
4284
4287
|
__publicField$p(this, "smtpServerFieldInputs");
|
|
4288
|
+
__publicField$p(this, "smtpServerHostInput");
|
|
4289
|
+
__publicField$p(this, "smtpServerPortInput");
|
|
4290
|
+
__publicField$p(this, "smtpServerUsernameInput");
|
|
4291
|
+
__publicField$p(this, "smtpServerPasswordInput");
|
|
4292
|
+
__publicField$p(this, "smtpServerEncryptionInput");
|
|
4293
|
+
__publicField$p(this, "smtpServerSenderAddressInput");
|
|
4294
|
+
__publicField$p(this, "smtpServerDeliveryAddressInput");
|
|
4295
|
+
__publicField$p(this, "smtpServerDisableEmailDeliveryCheckbox");
|
|
4285
4296
|
__publicField$p(this, "payPalPaymethods");
|
|
4286
4297
|
__publicField$p(this, "payPalInfoCard");
|
|
4287
4298
|
__publicField$p(this, "emailAddressInputField");
|
|
@@ -4318,7 +4329,19 @@ class FirstRunWizard {
|
|
|
4318
4329
|
this.smtpServerButton = page.getByText("Configure own SMTP server", { exact: true });
|
|
4319
4330
|
this.smtpServerTitle = page.getByText("SMTP server", { exact: true });
|
|
4320
4331
|
this.smtpServerFields = page.locator(".sw-field");
|
|
4321
|
-
this.
|
|
4332
|
+
this.smtpServerHostInput = page.getByLabel("Host");
|
|
4333
|
+
this.smtpServerPortInput = page.getByLabel("Port");
|
|
4334
|
+
this.smtpServerUsernameInput = page.getByLabel("Username");
|
|
4335
|
+
this.smtpServerPasswordInput = page.getByLabel("Password");
|
|
4336
|
+
this.smtpServerEncryptionInput = page.locator(".sw-single-select__selection-input");
|
|
4337
|
+
this.smtpServerSenderAddressInput = page.getByLabel("Sender address");
|
|
4338
|
+
this.smtpServerDeliveryAddressInput = page.getByLabel("Delivery address");
|
|
4339
|
+
this.smtpServerDisableEmailDeliveryCheckbox = page.getByLabel("Disable email delivery");
|
|
4340
|
+
if (satisfies(instanceMeta.version, "<6.7")) {
|
|
4341
|
+
this.smtpServerFieldInputs = page.locator(".sw-field");
|
|
4342
|
+
} else {
|
|
4343
|
+
this.smtpServerFieldInputs = page.locator(".mt-field");
|
|
4344
|
+
}
|
|
4322
4345
|
this.payPalSetupHeader = page.locator(".sw-modal__title", { hasText: "Setup PayPal" });
|
|
4323
4346
|
this.payPalPaymethods = page.locator(".paymethod");
|
|
4324
4347
|
this.payPalInfoCard = page.locator(".sw-first-run-wizard-paypal-info");
|
|
@@ -4554,7 +4577,7 @@ class ShippingDetail {
|
|
|
4554
4577
|
return `#/sw/settings/shipping/detail/${shippingId}`;
|
|
4555
4578
|
}
|
|
4556
4579
|
getRuleSelectionCheckmark(ruleName) {
|
|
4557
|
-
return this.availabilityRuleListItem.filter({ hasText: ruleName }).
|
|
4580
|
+
return this.availabilityRuleListItem.filter({ hasText: ruleName }).locator(".sw-select-result__result-item-checkmark");
|
|
4558
4581
|
}
|
|
4559
4582
|
}
|
|
4560
4583
|
|