@shopware-ag/acceptance-test-suite 11.1.1 → 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 CHANGED
@@ -1619,7 +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;
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;
1623
1635
  readonly payPalPaymethods: Locator;
1624
1636
  readonly payPalInfoCard: Locator;
1625
1637
  readonly emailAddressInputField: Locator;
package/dist/index.d.ts CHANGED
@@ -1619,7 +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;
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;
1623
1635
  readonly payPalPaymethods: Locator;
1624
1636
  readonly payPalInfoCard: Locator;
1625
1637
  readonly emailAddressInputField: Locator;
package/dist/index.mjs CHANGED
@@ -4280,7 +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");
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");
4284
4296
  __publicField$p(this, "payPalPaymethods");
4285
4297
  __publicField$p(this, "payPalInfoCard");
4286
4298
  __publicField$p(this, "emailAddressInputField");
@@ -4317,6 +4329,19 @@ class FirstRunWizard {
4317
4329
  this.smtpServerButton = page.getByText("Configure own SMTP server", { exact: true });
4318
4330
  this.smtpServerTitle = page.getByText("SMTP server", { exact: true });
4319
4331
  this.smtpServerFields = page.locator(".sw-field");
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
+ }
4320
4345
  this.payPalSetupHeader = page.locator(".sw-modal__title", { hasText: "Setup PayPal" });
4321
4346
  this.payPalPaymethods = page.locator(".paymethod");
4322
4347
  this.payPalInfoCard = page.locator(".sw-first-run-wizard-paypal-info");
@@ -4552,7 +4577,7 @@ class ShippingDetail {
4552
4577
  return `#/sw/settings/shipping/detail/${shippingId}`;
4553
4578
  }
4554
4579
  getRuleSelectionCheckmark(ruleName) {
4555
- return this.availabilityRuleListItem.filter({ hasText: ruleName }).getByTestId("sw-icon__regular-checkmark-xs");
4580
+ return this.availabilityRuleListItem.filter({ hasText: ruleName }).locator(".sw-select-result__result-item-checkmark");
4556
4581
  }
4557
4582
  }
4558
4583
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopware-ag/acceptance-test-suite",
3
- "version": "11.1.1",
3
+ "version": "11.1.3",
4
4
  "description": "Shopware Acceptance Test Suite",
5
5
  "author": "shopware AG",
6
6
  "license": "MIT",