@shopware-ag/acceptance-test-suite 11.19.2 → 11.20.1
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 +135 -94
- package/dist/index.d.ts +135 -94
- package/dist/index.mjs +713 -510
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import * as axe_core from 'axe-core';
|
|
2
|
+
import * as playwright_core from 'playwright-core';
|
|
3
|
+
import { APIRequestContext, APIResponse, Page, BrowserContext, Locator } from 'playwright-core';
|
|
4
|
+
export { APIRequestContext, APIResponse, BrowserContext, Locator, Page, Request } from 'playwright-core';
|
|
2
5
|
import * as _playwright_test from '@playwright/test';
|
|
3
|
-
|
|
4
|
-
export * from '@playwright/test';
|
|
6
|
+
export { expect, mergeTests } from '@playwright/test';
|
|
5
7
|
import { components } from '@shopware/api-client/admin-api-types';
|
|
6
8
|
import { Image } from 'image-js';
|
|
7
9
|
|
|
@@ -404,14 +406,15 @@ type CustomField = Omit<components['schemas']['CustomField'], 'config'> & {
|
|
|
404
406
|
type Tax$1 = components['schemas']['Tax'] & {
|
|
405
407
|
id: string;
|
|
406
408
|
};
|
|
407
|
-
declare
|
|
408
|
-
shippingAvailability
|
|
409
|
-
taxAvailability
|
|
410
|
-
paymentAvailability
|
|
411
|
-
promotionOrder
|
|
412
|
-
promotionCustomer
|
|
413
|
-
promotionCart
|
|
414
|
-
}
|
|
409
|
+
declare const RuleType: {
|
|
410
|
+
readonly shippingAvailability: "shippingMethodAvailabilityRule";
|
|
411
|
+
readonly taxAvailability: "taxProviderAvailabilityRule";
|
|
412
|
+
readonly paymentAvailability: "paymentMethodAvailabilityRule";
|
|
413
|
+
readonly promotionOrder: "promotionOrderRule";
|
|
414
|
+
readonly promotionCustomer: "promotionCustomerRule";
|
|
415
|
+
readonly promotionCart: "promotionCartRule";
|
|
416
|
+
};
|
|
417
|
+
type RuleType = typeof RuleType[keyof typeof RuleType];
|
|
415
418
|
interface RuleAssignmentEntity {
|
|
416
419
|
entity: {
|
|
417
420
|
id: string;
|
|
@@ -419,6 +422,19 @@ interface RuleAssignmentEntity {
|
|
|
419
422
|
};
|
|
420
423
|
ruleType: RuleType;
|
|
421
424
|
}
|
|
425
|
+
interface FlowConfig {
|
|
426
|
+
name: string;
|
|
427
|
+
description: string;
|
|
428
|
+
priority: string;
|
|
429
|
+
active: boolean;
|
|
430
|
+
triggerSearchTerm: string;
|
|
431
|
+
triggerLabel: string;
|
|
432
|
+
condition: string;
|
|
433
|
+
trueAction: string;
|
|
434
|
+
trueActionIdentifier: string;
|
|
435
|
+
falseAction: string;
|
|
436
|
+
falseActionIdentifier: string;
|
|
437
|
+
}
|
|
422
438
|
interface CategoryData {
|
|
423
439
|
name: string;
|
|
424
440
|
categoryType: 'Link' | 'Page / List' | 'Structuring element / Entry point';
|
|
@@ -1237,7 +1253,6 @@ interface PageObject {
|
|
|
1237
1253
|
}
|
|
1238
1254
|
|
|
1239
1255
|
declare class Home implements PageObject {
|
|
1240
|
-
readonly page: Page;
|
|
1241
1256
|
readonly categoryTitle: Locator;
|
|
1242
1257
|
readonly accountMenuButton: Locator;
|
|
1243
1258
|
readonly closeGuestSessionButton: Locator;
|
|
@@ -1304,6 +1319,7 @@ declare class Home implements PageObject {
|
|
|
1304
1319
|
readonly productItemNames: Locator;
|
|
1305
1320
|
readonly productRatingButton: Locator;
|
|
1306
1321
|
readonly productRatingList: Locator;
|
|
1322
|
+
readonly page: Page;
|
|
1307
1323
|
constructor(page: Page);
|
|
1308
1324
|
getRatingItemLocatorByRating(rating: number): Promise<Locator>;
|
|
1309
1325
|
getFilterItemByFilterName(filterName: string): Promise<Locator>;
|
|
@@ -1318,7 +1334,6 @@ declare class Home implements PageObject {
|
|
|
1318
1334
|
}
|
|
1319
1335
|
|
|
1320
1336
|
declare class ProductDetail$1 implements PageObject {
|
|
1321
|
-
readonly page: Page;
|
|
1322
1337
|
readonly addToCartButton: Locator;
|
|
1323
1338
|
readonly quantitySelect: Locator;
|
|
1324
1339
|
readonly productSingleImage: Locator;
|
|
@@ -1362,6 +1377,7 @@ declare class ProductDetail$1 implements PageObject {
|
|
|
1362
1377
|
readonly reviewSubmitButton: Locator;
|
|
1363
1378
|
readonly productReviewsLink: Locator;
|
|
1364
1379
|
readonly productReviewRating: Locator;
|
|
1380
|
+
readonly page: Page;
|
|
1365
1381
|
constructor(page: Page);
|
|
1366
1382
|
getReviewFilterRowOptionsByName(filterOptionName: string): Promise<{
|
|
1367
1383
|
reviewFilterOptionCheckbox: Locator;
|
|
@@ -1372,16 +1388,15 @@ declare class ProductDetail$1 implements PageObject {
|
|
|
1372
1388
|
}
|
|
1373
1389
|
|
|
1374
1390
|
declare class Category implements PageObject {
|
|
1375
|
-
readonly page: Page;
|
|
1376
1391
|
readonly sortingSelect: Locator;
|
|
1377
1392
|
readonly firstProductBuyButton: Locator;
|
|
1378
1393
|
readonly noProductsFoundAlert: Locator;
|
|
1394
|
+
readonly page: Page;
|
|
1379
1395
|
constructor(page: Page);
|
|
1380
1396
|
url(categoryName: string): string;
|
|
1381
1397
|
}
|
|
1382
1398
|
|
|
1383
1399
|
declare class CheckoutCart implements PageObject {
|
|
1384
|
-
readonly page: Page;
|
|
1385
1400
|
readonly headline: Locator;
|
|
1386
1401
|
readonly goToCheckoutButton: Locator;
|
|
1387
1402
|
readonly enterPromoInput: Locator;
|
|
@@ -1391,13 +1406,13 @@ declare class CheckoutCart implements PageObject {
|
|
|
1391
1406
|
readonly cartLineItemImages: Locator;
|
|
1392
1407
|
readonly unitPriceInfo: Locator;
|
|
1393
1408
|
readonly cartQuantityNumber: Locator;
|
|
1409
|
+
readonly page: Page;
|
|
1394
1410
|
constructor(page: Page);
|
|
1395
1411
|
url(): string;
|
|
1396
1412
|
getLineItemByProductNumber(productNumber: string): Promise<Record<string, Locator>>;
|
|
1397
1413
|
}
|
|
1398
1414
|
|
|
1399
1415
|
declare class OffCanvasCart implements PageObject {
|
|
1400
|
-
readonly page: Page;
|
|
1401
1416
|
readonly headline: Locator;
|
|
1402
1417
|
readonly itemCount: Locator;
|
|
1403
1418
|
readonly goToCheckoutButton: Locator;
|
|
@@ -1408,13 +1423,13 @@ declare class OffCanvasCart implements PageObject {
|
|
|
1408
1423
|
readonly subTotalPrice: Locator;
|
|
1409
1424
|
readonly shippingCosts: Locator;
|
|
1410
1425
|
readonly cartQuantityNumber: Locator;
|
|
1426
|
+
readonly page: Page;
|
|
1411
1427
|
constructor(page: Page);
|
|
1412
1428
|
url(): string;
|
|
1413
1429
|
getLineItemByProductNumber(productNumber: string): Promise<Record<string, Locator>>;
|
|
1414
1430
|
}
|
|
1415
1431
|
|
|
1416
1432
|
declare class CheckoutConfirm implements PageObject {
|
|
1417
|
-
readonly page: Page;
|
|
1418
1433
|
readonly headline: Locator;
|
|
1419
1434
|
readonly termsAndConditionsCheckbox: Locator;
|
|
1420
1435
|
readonly immediateAccessToDigitalProductCheckbox: Locator;
|
|
@@ -1436,17 +1451,18 @@ declare class CheckoutConfirm implements PageObject {
|
|
|
1436
1451
|
* Product details
|
|
1437
1452
|
*/
|
|
1438
1453
|
readonly cartLineItemImages: Locator;
|
|
1454
|
+
readonly page: Page;
|
|
1439
1455
|
constructor(page: Page);
|
|
1440
1456
|
url(): string;
|
|
1441
1457
|
}
|
|
1442
1458
|
|
|
1443
1459
|
declare class CheckoutFinish implements PageObject {
|
|
1444
|
-
readonly page: Page;
|
|
1445
1460
|
readonly headline: Locator;
|
|
1446
1461
|
readonly orderNumberText: Locator;
|
|
1447
1462
|
readonly grandTotalPrice: Locator;
|
|
1448
1463
|
readonly taxPrice: Locator;
|
|
1449
1464
|
readonly cartLineItemImages: Locator;
|
|
1465
|
+
readonly page: Page;
|
|
1450
1466
|
private readonly orderNumberRegex;
|
|
1451
1467
|
constructor(page: Page);
|
|
1452
1468
|
url(): string;
|
|
@@ -1455,15 +1471,13 @@ declare class CheckoutFinish implements PageObject {
|
|
|
1455
1471
|
}
|
|
1456
1472
|
|
|
1457
1473
|
declare class CheckoutRegister implements PageObject {
|
|
1458
|
-
readonly page: Page;
|
|
1459
1474
|
readonly cartLineItemImages: Locator;
|
|
1475
|
+
readonly page: Page;
|
|
1460
1476
|
constructor(page: Page);
|
|
1461
1477
|
url(): string;
|
|
1462
1478
|
}
|
|
1463
1479
|
|
|
1464
1480
|
declare class Account implements PageObject {
|
|
1465
|
-
readonly page: Page;
|
|
1466
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1467
1481
|
readonly headline: Locator;
|
|
1468
1482
|
readonly personalDataCardTitle: Locator;
|
|
1469
1483
|
readonly paymentMethodCardTitle: Locator;
|
|
@@ -1474,13 +1488,14 @@ declare class Account implements PageObject {
|
|
|
1474
1488
|
readonly customerGroupRequestMessage: Locator;
|
|
1475
1489
|
readonly cannotDeliverToCountryAlert: Locator;
|
|
1476
1490
|
readonly shippingToAddressNotPossibleAlert: Locator;
|
|
1491
|
+
readonly page: Page;
|
|
1492
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1477
1493
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
1478
1494
|
getCustomerGroupAlert(customerGroup: string): Promise<Locator>;
|
|
1479
1495
|
url(): string;
|
|
1480
1496
|
}
|
|
1481
1497
|
|
|
1482
1498
|
declare class AccountLogin implements PageObject {
|
|
1483
|
-
readonly page: Page;
|
|
1484
1499
|
readonly emailInput: Locator;
|
|
1485
1500
|
readonly passwordInput: Locator;
|
|
1486
1501
|
readonly forgotPasswordLink: Locator;
|
|
@@ -1520,13 +1535,13 @@ declare class AccountLogin implements PageObject {
|
|
|
1520
1535
|
readonly shippingAddressCountryInput: Locator;
|
|
1521
1536
|
readonly shippingAddressPostalCodeInput: Locator;
|
|
1522
1537
|
readonly shippingAddressStateInput: Locator;
|
|
1538
|
+
readonly page: Page;
|
|
1523
1539
|
constructor(page: Page);
|
|
1524
1540
|
getShippingCountryLocatorByName(countryName: string): Promise<Locator>;
|
|
1525
1541
|
url(): string;
|
|
1526
1542
|
}
|
|
1527
1543
|
|
|
1528
1544
|
declare class AccountRecover implements PageObject {
|
|
1529
|
-
readonly page: Page;
|
|
1530
1545
|
readonly passwordRecoveryForm: Locator;
|
|
1531
1546
|
readonly title: Locator;
|
|
1532
1547
|
readonly subtitle: Locator;
|
|
@@ -1538,6 +1553,7 @@ declare class AccountRecover implements PageObject {
|
|
|
1538
1553
|
readonly newPasswordConfirmInput: Locator;
|
|
1539
1554
|
readonly changePasswordButton: Locator;
|
|
1540
1555
|
readonly invalidLinkMessage: Locator;
|
|
1556
|
+
readonly page: Page;
|
|
1541
1557
|
constructor(page: Page);
|
|
1542
1558
|
url(recoverLink?: string): string;
|
|
1543
1559
|
}
|
|
@@ -1570,7 +1586,6 @@ declare class AccountProfile implements PageObject {
|
|
|
1570
1586
|
}
|
|
1571
1587
|
|
|
1572
1588
|
declare class AccountOrder implements PageObject {
|
|
1573
|
-
readonly page: Page;
|
|
1574
1589
|
readonly cartLineItemImages: Locator;
|
|
1575
1590
|
readonly orderExpandButton: Locator;
|
|
1576
1591
|
readonly digitalProductDownloadButton: Locator;
|
|
@@ -1580,14 +1595,13 @@ declare class AccountOrder implements PageObject {
|
|
|
1580
1595
|
readonly orderDetails: Locator;
|
|
1581
1596
|
readonly invoiceHTML: Locator;
|
|
1582
1597
|
readonly creditItem: Locator;
|
|
1598
|
+
readonly page: Page;
|
|
1583
1599
|
constructor(page: Page);
|
|
1584
1600
|
getOrderByOrderNumber(orderNumber: string): Promise<Record<string, Locator>>;
|
|
1585
1601
|
url(): string;
|
|
1586
1602
|
}
|
|
1587
1603
|
|
|
1588
1604
|
declare class AccountAddresses implements PageObject {
|
|
1589
|
-
readonly page: Page;
|
|
1590
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1591
1605
|
readonly addNewAddressButton: Locator;
|
|
1592
1606
|
readonly editBillingAddressButton: Locator;
|
|
1593
1607
|
readonly editShippingAddressButton: Locator;
|
|
@@ -1599,30 +1613,31 @@ declare class AccountAddresses implements PageObject {
|
|
|
1599
1613
|
readonly addressDropdownButtons: Locator | undefined;
|
|
1600
1614
|
readonly availableAddressesUseAsBillingAddress: Locator | undefined;
|
|
1601
1615
|
readonly availableAddressesUseAsShippingAddress: Locator | undefined;
|
|
1616
|
+
readonly page: Page;
|
|
1617
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1602
1618
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
1603
1619
|
url(): string;
|
|
1604
1620
|
}
|
|
1605
1621
|
|
|
1606
1622
|
declare class AccountPayment implements PageObject {
|
|
1607
|
-
readonly page: Page;
|
|
1608
1623
|
readonly cashOnDeliveryOption: Locator;
|
|
1609
1624
|
readonly paidInAdvanceOption: Locator;
|
|
1610
1625
|
readonly invoiceOption: Locator;
|
|
1611
1626
|
readonly changeDefaultPaymentButton: Locator;
|
|
1627
|
+
readonly page: Page;
|
|
1612
1628
|
constructor(page: Page);
|
|
1613
1629
|
url(): string;
|
|
1614
1630
|
}
|
|
1615
1631
|
|
|
1616
1632
|
declare class Search implements PageObject {
|
|
1617
|
-
readonly page: Page;
|
|
1618
1633
|
readonly headline: Locator;
|
|
1619
1634
|
readonly productImages: Locator;
|
|
1635
|
+
readonly page: Page;
|
|
1620
1636
|
constructor(page: Page);
|
|
1621
1637
|
url(searchTerm: string): string;
|
|
1622
1638
|
}
|
|
1623
1639
|
|
|
1624
1640
|
declare class SearchSuggest extends Home implements PageObject {
|
|
1625
|
-
readonly page: Page;
|
|
1626
1641
|
readonly searchSuggestLineItemImages: Locator;
|
|
1627
1642
|
readonly searchInput: Locator;
|
|
1628
1643
|
readonly searchIcon: Locator;
|
|
@@ -1632,6 +1647,7 @@ declare class SearchSuggest extends Home implements PageObject {
|
|
|
1632
1647
|
readonly searchSuggestTotalLink: Locator;
|
|
1633
1648
|
readonly searchResultTotal: Locator;
|
|
1634
1649
|
readonly searchHeadline: Locator;
|
|
1650
|
+
readonly page: Page;
|
|
1635
1651
|
constructor(page: Page);
|
|
1636
1652
|
getTotalSearchResultCount(): Promise<number>;
|
|
1637
1653
|
url(searchTerm?: string): string;
|
|
@@ -1644,7 +1660,6 @@ declare class CustomRegister extends AccountLogin implements PageObject {
|
|
|
1644
1660
|
}
|
|
1645
1661
|
|
|
1646
1662
|
declare class CheckoutOrderEdit implements PageObject {
|
|
1647
|
-
readonly page: Page;
|
|
1648
1663
|
readonly completePaymentButton: Locator;
|
|
1649
1664
|
readonly orderCancelButton: Locator;
|
|
1650
1665
|
readonly dialogOrderCancel: Locator;
|
|
@@ -1661,6 +1676,7 @@ declare class CheckoutOrderEdit implements PageObject {
|
|
|
1661
1676
|
*/
|
|
1662
1677
|
readonly shippingStandard: Locator;
|
|
1663
1678
|
readonly shippingExpress: Locator;
|
|
1679
|
+
readonly page: Page;
|
|
1664
1680
|
constructor(page: Page);
|
|
1665
1681
|
url(orderUuid: string): string;
|
|
1666
1682
|
/**
|
|
@@ -1672,7 +1688,6 @@ declare class CheckoutOrderEdit implements PageObject {
|
|
|
1672
1688
|
}
|
|
1673
1689
|
|
|
1674
1690
|
declare class AccountAddressCreate implements PageObject {
|
|
1675
|
-
readonly page: Page;
|
|
1676
1691
|
readonly salutationDropdown: Locator;
|
|
1677
1692
|
readonly firstNameInput: Locator;
|
|
1678
1693
|
readonly lastNameInput: Locator;
|
|
@@ -1684,23 +1699,22 @@ declare class AccountAddressCreate implements PageObject {
|
|
|
1684
1699
|
readonly countryDropdown: Locator;
|
|
1685
1700
|
readonly saveAddressButton: Locator;
|
|
1686
1701
|
readonly stateDropdown: Locator;
|
|
1702
|
+
readonly page: Page;
|
|
1687
1703
|
constructor(page: Page);
|
|
1688
1704
|
url(): string;
|
|
1689
1705
|
}
|
|
1690
1706
|
|
|
1691
1707
|
declare class PageNotFound implements PageObject {
|
|
1692
|
-
readonly page: Page;
|
|
1693
1708
|
readonly pageNotFoundImage: Locator;
|
|
1694
1709
|
readonly headline: Locator;
|
|
1695
1710
|
readonly pageNotFoundMessage: Locator;
|
|
1696
1711
|
readonly backToShopButton: Locator;
|
|
1712
|
+
readonly page: Page;
|
|
1697
1713
|
constructor(page: Page);
|
|
1698
1714
|
url(): string;
|
|
1699
1715
|
}
|
|
1700
1716
|
|
|
1701
1717
|
declare class ContactForm extends Home implements PageObject {
|
|
1702
|
-
readonly page: Page;
|
|
1703
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1704
1718
|
/**
|
|
1705
1719
|
* @deprecated Compatible until shopware v6.6.x, will be removed in 6.8.0.0, use 'contactWrapper' instead
|
|
1706
1720
|
*/
|
|
@@ -1733,33 +1747,33 @@ declare class ContactForm extends Home implements PageObject {
|
|
|
1733
1747
|
readonly greCaptchaV2Container: Locator;
|
|
1734
1748
|
readonly greCaptchaV2Input: Locator;
|
|
1735
1749
|
readonly greCaptchaProtectionInformation: Locator;
|
|
1750
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1736
1751
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
1737
1752
|
url(): string;
|
|
1738
1753
|
}
|
|
1739
1754
|
|
|
1740
1755
|
declare class Wishlist extends Home implements PageObject {
|
|
1741
|
-
readonly page: Page;
|
|
1742
1756
|
readonly wishListHeader: Locator;
|
|
1743
1757
|
readonly removeAlert: Locator;
|
|
1744
1758
|
readonly emptyListing: Locator;
|
|
1759
|
+
readonly page: Page;
|
|
1745
1760
|
constructor(page: Page);
|
|
1746
1761
|
getListingItemByProductName(productListingName: string): Promise<Record<string, Locator>>;
|
|
1747
1762
|
url(): string;
|
|
1748
1763
|
}
|
|
1749
1764
|
|
|
1750
1765
|
declare class Footer implements PageObject {
|
|
1751
|
-
readonly page: Page;
|
|
1752
1766
|
readonly footerHeadline: Locator;
|
|
1753
1767
|
readonly footerContent: Locator;
|
|
1754
1768
|
readonly footerHotline: Locator;
|
|
1755
1769
|
readonly footerContactForm: Locator;
|
|
1756
1770
|
readonly footerContactFormLink: Locator;
|
|
1771
|
+
readonly page: Page;
|
|
1757
1772
|
constructor(page: Page);
|
|
1758
1773
|
url(): string;
|
|
1759
1774
|
}
|
|
1760
1775
|
|
|
1761
1776
|
declare class Header implements PageObject {
|
|
1762
|
-
readonly page: Page;
|
|
1763
1777
|
readonly mainNavigationLink: Locator;
|
|
1764
1778
|
readonly languagesDropdown: Locator;
|
|
1765
1779
|
readonly languagesMenuOptions: Locator;
|
|
@@ -1767,6 +1781,7 @@ declare class Header implements PageObject {
|
|
|
1767
1781
|
readonly currenciesMenuOptions: Locator;
|
|
1768
1782
|
readonly wishlistIcon: Locator;
|
|
1769
1783
|
readonly wishlistBasket: Locator;
|
|
1784
|
+
readonly page: Page;
|
|
1770
1785
|
constructor(page: Page);
|
|
1771
1786
|
url(): string;
|
|
1772
1787
|
}
|
|
@@ -1827,8 +1842,6 @@ declare const StorefrontPageObjects: {
|
|
|
1827
1842
|
};
|
|
1828
1843
|
|
|
1829
1844
|
declare class ProductDetail implements PageObject {
|
|
1830
|
-
readonly page: Page;
|
|
1831
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1832
1845
|
readonly contentView: Locator;
|
|
1833
1846
|
readonly productHeadline: Locator;
|
|
1834
1847
|
/**
|
|
@@ -1900,6 +1913,8 @@ declare class ProductDetail implements PageObject {
|
|
|
1900
1913
|
* Cards
|
|
1901
1914
|
*/
|
|
1902
1915
|
readonly customFieldCard: Locator;
|
|
1916
|
+
readonly page: Page;
|
|
1917
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1903
1918
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
1904
1919
|
getCustomFieldSetCardContentByName(customFieldSetName: string): Promise<Record<string, Locator>>;
|
|
1905
1920
|
url(productId: string): string;
|
|
@@ -1912,8 +1927,6 @@ declare class ProductDetail implements PageObject {
|
|
|
1912
1927
|
}
|
|
1913
1928
|
|
|
1914
1929
|
declare class OrderDetail implements PageObject {
|
|
1915
|
-
readonly page: Page;
|
|
1916
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1917
1930
|
readonly saveButton: Locator;
|
|
1918
1931
|
readonly dataGridContextButton: Locator;
|
|
1919
1932
|
readonly orderTag: Locator;
|
|
@@ -1933,6 +1946,8 @@ declare class OrderDetail implements PageObject {
|
|
|
1933
1946
|
readonly generalTabLink: Locator;
|
|
1934
1947
|
readonly detailsTabLink: Locator;
|
|
1935
1948
|
readonly documentsTabLink: Locator;
|
|
1949
|
+
readonly page: Page;
|
|
1950
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1936
1951
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
1937
1952
|
url(orderId: string, tabName?: string): string;
|
|
1938
1953
|
getCustomFieldCardLocators(customFieldSetName: string, customFieldTextName: string): Promise<{
|
|
@@ -1944,7 +1959,6 @@ declare class OrderDetail implements PageObject {
|
|
|
1944
1959
|
}
|
|
1945
1960
|
|
|
1946
1961
|
declare class CustomerListing implements PageObject {
|
|
1947
|
-
readonly page: Page;
|
|
1948
1962
|
readonly headline: Locator;
|
|
1949
1963
|
readonly addCustomerButton: Locator;
|
|
1950
1964
|
readonly bulkEditButton: Locator;
|
|
@@ -1953,6 +1967,7 @@ declare class CustomerListing implements PageObject {
|
|
|
1953
1967
|
readonly startBulkEditButton: Locator;
|
|
1954
1968
|
readonly cancelButton: Locator;
|
|
1955
1969
|
readonly modalHeaderCheckbox: Locator;
|
|
1970
|
+
readonly page: Page;
|
|
1956
1971
|
constructor(page: Page);
|
|
1957
1972
|
getCustomerByEmail(customerEmail: string): Promise<Record<string, Locator>>;
|
|
1958
1973
|
getCustomerBulkEditModalTitle(customerCount: number): Promise<Locator>;
|
|
@@ -1961,8 +1976,6 @@ declare class CustomerListing implements PageObject {
|
|
|
1961
1976
|
}
|
|
1962
1977
|
|
|
1963
1978
|
declare class CustomerDetail implements PageObject {
|
|
1964
|
-
readonly page: Page;
|
|
1965
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1966
1979
|
readonly editButton: Locator;
|
|
1967
1980
|
readonly generalTab: Locator;
|
|
1968
1981
|
readonly accountCard: Locator;
|
|
@@ -1974,6 +1987,8 @@ declare class CustomerDetail implements PageObject {
|
|
|
1974
1987
|
readonly customerGroupDeclineButton: Locator;
|
|
1975
1988
|
readonly tagList: Locator;
|
|
1976
1989
|
readonly tagItems: Locator;
|
|
1990
|
+
readonly page: Page;
|
|
1991
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1977
1992
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
1978
1993
|
getCustomFieldSetCardContentByName(customFieldSetName: string): Promise<Record<string, Locator>>;
|
|
1979
1994
|
getCustomerGroupAlert(customerGroup: string): Promise<Locator>;
|
|
@@ -1984,17 +1999,15 @@ declare class CustomerDetail implements PageObject {
|
|
|
1984
1999
|
}
|
|
1985
2000
|
|
|
1986
2001
|
declare class CustomerGroupListing implements PageObject {
|
|
1987
|
-
readonly page: Page;
|
|
1988
2002
|
readonly headline: Locator;
|
|
1989
2003
|
readonly addCustomerGroupButton: Locator;
|
|
2004
|
+
readonly page: Page;
|
|
1990
2005
|
constructor(page: Page);
|
|
1991
2006
|
getCustomerGroupByName(customerGroup: string): Promise<Record<string, Locator>>;
|
|
1992
2007
|
url(): string;
|
|
1993
2008
|
}
|
|
1994
2009
|
|
|
1995
2010
|
declare class CustomerGroupCreate implements PageObject {
|
|
1996
|
-
readonly page: Page;
|
|
1997
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
1998
2011
|
readonly headline: Locator;
|
|
1999
2012
|
readonly saveButton: Locator;
|
|
2000
2013
|
readonly cancelButton: Locator;
|
|
@@ -2009,13 +2022,13 @@ declare class CustomerGroupCreate implements PageObject {
|
|
|
2009
2022
|
readonly signupFormCompanySignupToggle: Locator;
|
|
2010
2023
|
readonly customerGroupSaleschannelSelection: Locator;
|
|
2011
2024
|
readonly customerGroupSaleschannelResultList: Locator;
|
|
2025
|
+
readonly page: Page;
|
|
2026
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2012
2027
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2013
2028
|
url(): string;
|
|
2014
2029
|
}
|
|
2015
2030
|
|
|
2016
2031
|
declare class CustomerGroupDetail extends CustomerGroupCreate implements PageObject {
|
|
2017
|
-
readonly page: Page;
|
|
2018
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2019
2032
|
readonly headline: Locator;
|
|
2020
2033
|
readonly selectedSalesChannel: Locator;
|
|
2021
2034
|
readonly technicalUrl: Locator;
|
|
@@ -2025,8 +2038,6 @@ declare class CustomerGroupDetail extends CustomerGroupCreate implements PageObj
|
|
|
2025
2038
|
}
|
|
2026
2039
|
|
|
2027
2040
|
declare class FirstRunWizard implements PageObject {
|
|
2028
|
-
readonly page: Page;
|
|
2029
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2030
2041
|
readonly nextButton: Locator;
|
|
2031
2042
|
readonly configureLaterButton: Locator;
|
|
2032
2043
|
readonly skipButton: Locator;
|
|
@@ -2077,26 +2088,58 @@ declare class FirstRunWizard implements PageObject {
|
|
|
2077
2088
|
readonly toolsSelector: Locator;
|
|
2078
2089
|
readonly recommendationHeader: Locator;
|
|
2079
2090
|
readonly toolsRecommendedPlugin: Locator;
|
|
2091
|
+
readonly page: Page;
|
|
2092
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2080
2093
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2081
2094
|
url(): string;
|
|
2082
2095
|
}
|
|
2083
2096
|
|
|
2084
2097
|
declare class FlowBuilderCreate implements PageObject {
|
|
2085
|
-
readonly page: Page;
|
|
2086
2098
|
readonly saveButton: Locator;
|
|
2087
2099
|
readonly header: Locator;
|
|
2088
|
-
readonly
|
|
2100
|
+
readonly smartBarHeader: Locator;
|
|
2101
|
+
readonly generalTab: Locator;
|
|
2089
2102
|
readonly flowTab: Locator;
|
|
2103
|
+
readonly nameField: Locator;
|
|
2104
|
+
readonly descriptionField: Locator;
|
|
2105
|
+
readonly priorityField: Locator;
|
|
2106
|
+
readonly activeSwitch: Locator;
|
|
2090
2107
|
readonly triggerSelectField: Locator;
|
|
2108
|
+
readonly modalAddButton: Locator;
|
|
2109
|
+
readonly sequenceSelectorConditionButton: Locator;
|
|
2110
|
+
readonly conditionSelectField: Locator;
|
|
2111
|
+
readonly sequenceSelectorActionButton: Locator;
|
|
2112
|
+
readonly actionSelectField: Locator;
|
|
2113
|
+
readonly selectFieldResultList: Locator;
|
|
2114
|
+
readonly trueBlock: Locator;
|
|
2115
|
+
readonly trueBlockAddConditionButton: Locator;
|
|
2116
|
+
readonly trueBlockAddActionButton: Locator;
|
|
2117
|
+
readonly trueBlockActionSelectField: Locator;
|
|
2118
|
+
readonly trueBlockActionDescription: Locator;
|
|
2119
|
+
readonly mailSendModal: Locator;
|
|
2120
|
+
readonly mailSendModalTemplateSelectField: Locator;
|
|
2121
|
+
readonly falseBlock: Locator;
|
|
2122
|
+
readonly falseBlockAddConditionButton: Locator;
|
|
2123
|
+
readonly falseBlockAddActionButton: Locator;
|
|
2124
|
+
readonly falseBlockActionSelectField: Locator;
|
|
2125
|
+
readonly falseBlockActionDescription: Locator;
|
|
2126
|
+
readonly tagModal: Locator;
|
|
2127
|
+
readonly tagModalTagsSelectField: Locator;
|
|
2128
|
+
readonly delayCard: Locator;
|
|
2129
|
+
readonly conditionRule: Locator;
|
|
2130
|
+
readonly sequenceSeparator: Locator;
|
|
2091
2131
|
readonly addActionField: Locator;
|
|
2092
|
-
readonly smartBarHeader: Locator;
|
|
2093
2132
|
readonly newFlowHeader: Locator;
|
|
2094
|
-
|
|
2133
|
+
readonly resultListItem: Locator;
|
|
2134
|
+
readonly resultList: Locator;
|
|
2135
|
+
readonly page: Page;
|
|
2136
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2137
|
+
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2095
2138
|
url(flowId?: string, tabName?: string): string;
|
|
2139
|
+
getSelectFieldListitem(selectField: Locator, listItem: string): Promise<Locator>;
|
|
2096
2140
|
}
|
|
2097
2141
|
|
|
2098
2142
|
declare class FlowBuilderListing implements PageObject {
|
|
2099
|
-
readonly page: Page;
|
|
2100
2143
|
readonly createFlowButton: Locator;
|
|
2101
2144
|
readonly firstFlowName: Locator;
|
|
2102
2145
|
readonly firstFlowContextButton: Locator;
|
|
@@ -2111,25 +2154,23 @@ declare class FlowBuilderListing implements PageObject {
|
|
|
2111
2154
|
readonly successAlert: Locator;
|
|
2112
2155
|
readonly successAlertMessage: Locator;
|
|
2113
2156
|
readonly searchBar: Locator;
|
|
2157
|
+
readonly page: Page;
|
|
2114
2158
|
constructor(page: Page);
|
|
2115
2159
|
url(): string;
|
|
2116
2160
|
getLineItemByFlowName(flowName: string): Promise<Record<string, Locator>>;
|
|
2117
2161
|
}
|
|
2118
2162
|
|
|
2119
2163
|
declare class FlowBuilderTemplates extends FlowBuilderListing implements PageObject {
|
|
2120
|
-
readonly page: Page;
|
|
2121
2164
|
constructor(page: Page);
|
|
2122
2165
|
url(): string;
|
|
2123
2166
|
getLineItemByFlowName(flowName: string): Promise<{
|
|
2124
|
-
createFlowLink:
|
|
2125
|
-
lineItem:
|
|
2126
|
-
templateDetailLink:
|
|
2167
|
+
createFlowLink: playwright_core.Locator;
|
|
2168
|
+
lineItem: playwright_core.Locator;
|
|
2169
|
+
templateDetailLink: playwright_core.Locator;
|
|
2127
2170
|
}>;
|
|
2128
2171
|
}
|
|
2129
2172
|
|
|
2130
2173
|
declare class FlowBuilderDetail extends FlowBuilderCreate implements PageObject {
|
|
2131
|
-
readonly page: Page;
|
|
2132
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2133
2174
|
readonly saveButtonLoader: Locator;
|
|
2134
2175
|
readonly saveButton: Locator;
|
|
2135
2176
|
readonly generalTab: Locator;
|
|
@@ -2137,24 +2178,26 @@ declare class FlowBuilderDetail extends FlowBuilderCreate implements PageObject
|
|
|
2137
2178
|
readonly alertWarning: Locator;
|
|
2138
2179
|
readonly templateName: Locator;
|
|
2139
2180
|
readonly alertMessage: Locator;
|
|
2181
|
+
readonly successMessage: Locator;
|
|
2182
|
+
readonly actionContentTag: Locator;
|
|
2140
2183
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2141
2184
|
url(flowId: string, tabName?: string): string;
|
|
2185
|
+
getTooltipText(toolTipArea: Locator): Promise<string>;
|
|
2142
2186
|
}
|
|
2143
2187
|
|
|
2144
2188
|
declare class DataSharing implements PageObject {
|
|
2145
|
-
readonly page: Page;
|
|
2146
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2147
2189
|
readonly dataConsentHeadline: Locator;
|
|
2148
2190
|
readonly dataSharingSuccessMessageLabel: Locator;
|
|
2149
2191
|
readonly dataSharingAgreeButton: Locator;
|
|
2150
2192
|
readonly dataSharingDisableButton: Locator;
|
|
2151
2193
|
readonly dataSharingTermsAgreementLabel: Locator;
|
|
2194
|
+
readonly page: Page;
|
|
2195
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2152
2196
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2153
2197
|
url(): "#/sw/settings/usage/data/index" | "#/sw/settings/usage/data/index/general";
|
|
2154
2198
|
}
|
|
2155
2199
|
|
|
2156
2200
|
declare class Dashboard implements PageObject {
|
|
2157
|
-
readonly page: Page;
|
|
2158
2201
|
readonly contentView: Locator;
|
|
2159
2202
|
readonly adminMenuView: Locator;
|
|
2160
2203
|
readonly adminMenuCatalog: Locator;
|
|
@@ -2177,12 +2220,12 @@ declare class Dashboard implements PageObject {
|
|
|
2177
2220
|
readonly dataSharingNotAtTheMomentMessageText: Locator;
|
|
2178
2221
|
readonly statisticsDateRange: Locator;
|
|
2179
2222
|
readonly statisticsChart: Locator;
|
|
2223
|
+
readonly page: Page;
|
|
2180
2224
|
constructor(page: Page);
|
|
2181
2225
|
url(): string;
|
|
2182
2226
|
}
|
|
2183
2227
|
|
|
2184
2228
|
declare class ShippingListing implements PageObject {
|
|
2185
|
-
readonly page: Page;
|
|
2186
2229
|
readonly header: Locator;
|
|
2187
2230
|
readonly addShippingMethod: Locator;
|
|
2188
2231
|
readonly contextMenu: Locator;
|
|
@@ -2192,34 +2235,34 @@ declare class ShippingListing implements PageObject {
|
|
|
2192
2235
|
readonly modalHeader: Locator;
|
|
2193
2236
|
readonly modalCancelButton: Locator;
|
|
2194
2237
|
readonly modalDeleteButton: Locator;
|
|
2238
|
+
readonly page: Page;
|
|
2195
2239
|
constructor(page: Page);
|
|
2196
2240
|
url(): string;
|
|
2197
2241
|
}
|
|
2198
2242
|
|
|
2199
2243
|
declare class ShippingDetail implements PageObject {
|
|
2200
|
-
readonly page: Page;
|
|
2201
2244
|
readonly header: Locator;
|
|
2202
2245
|
readonly nameField: Locator;
|
|
2203
2246
|
readonly availabilityRuleField: Locator;
|
|
2204
2247
|
readonly availabilityRuleListItem: Locator;
|
|
2248
|
+
readonly page: Page;
|
|
2205
2249
|
constructor(page: Page);
|
|
2206
2250
|
url(shippingId: string): string;
|
|
2207
2251
|
getRuleSelectionCheckmark(ruleName: string): Locator;
|
|
2208
2252
|
}
|
|
2209
2253
|
|
|
2210
2254
|
declare class PaymentDetail implements PageObject {
|
|
2211
|
-
readonly page: Page;
|
|
2212
2255
|
readonly header: Locator;
|
|
2213
2256
|
readonly nameField: Locator;
|
|
2214
2257
|
readonly availabilityRuleField: Locator;
|
|
2215
2258
|
readonly availabilityRuleListItem: Locator;
|
|
2259
|
+
readonly page: Page;
|
|
2216
2260
|
constructor(page: Page);
|
|
2217
2261
|
url(paymentId: string): string;
|
|
2218
2262
|
getRuleSelectionCheckmark(ruleName: string): Locator;
|
|
2219
2263
|
}
|
|
2220
2264
|
|
|
2221
2265
|
declare class LandingPageCreate implements PageObject {
|
|
2222
|
-
readonly page: Page;
|
|
2223
2266
|
/**
|
|
2224
2267
|
* General
|
|
2225
2268
|
*/
|
|
@@ -2241,12 +2284,12 @@ declare class LandingPageCreate implements PageObject {
|
|
|
2241
2284
|
readonly layoutEmptyState: Locator;
|
|
2242
2285
|
readonly createNewLayoutButton: Locator;
|
|
2243
2286
|
readonly layoutCheckboxes: Locator;
|
|
2287
|
+
readonly page: Page;
|
|
2244
2288
|
constructor(page: Page);
|
|
2245
2289
|
url(): string;
|
|
2246
2290
|
}
|
|
2247
2291
|
|
|
2248
2292
|
declare class LandingPageDetail implements PageObject {
|
|
2249
|
-
readonly page: Page;
|
|
2250
2293
|
/**
|
|
2251
2294
|
* General
|
|
2252
2295
|
*/
|
|
@@ -2268,13 +2311,12 @@ declare class LandingPageDetail implements PageObject {
|
|
|
2268
2311
|
readonly layoutResetButton: Locator;
|
|
2269
2312
|
readonly layoutAssignmentStatus: Locator;
|
|
2270
2313
|
readonly layoutAssignmentContentSection: Locator;
|
|
2314
|
+
readonly page: Page;
|
|
2271
2315
|
constructor(page: Page);
|
|
2272
2316
|
url(landingPageUuid: string): string;
|
|
2273
2317
|
}
|
|
2274
2318
|
|
|
2275
2319
|
declare class Categories implements PageObject {
|
|
2276
|
-
readonly page: Page;
|
|
2277
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2278
2320
|
/**
|
|
2279
2321
|
* Visual tests
|
|
2280
2322
|
*/
|
|
@@ -2327,6 +2369,8 @@ declare class Categories implements PageObject {
|
|
|
2327
2369
|
readonly popoverCategoryTree: Locator;
|
|
2328
2370
|
readonly categorySelectionListWrapper: Locator;
|
|
2329
2371
|
readonly productSelectionInput: Locator;
|
|
2372
|
+
readonly page: Page;
|
|
2373
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2330
2374
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2331
2375
|
getLandingPageByName(landingPageName: string): Promise<Locator>;
|
|
2332
2376
|
getPopOverCategoryByName(categoryName: string): Promise<Locator>;
|
|
@@ -2335,16 +2379,15 @@ declare class Categories implements PageObject {
|
|
|
2335
2379
|
}
|
|
2336
2380
|
|
|
2337
2381
|
declare class CustomFieldListing implements PageObject {
|
|
2338
|
-
readonly page: Page;
|
|
2339
2382
|
readonly addNewSetButton: Locator;
|
|
2340
2383
|
readonly customFieldRows: Locator;
|
|
2384
|
+
readonly page: Page;
|
|
2341
2385
|
constructor(page: Page);
|
|
2342
2386
|
getLineItemByCustomFieldSetName(customFieldSetName: string): Promise<Record<string, Locator>>;
|
|
2343
2387
|
url(): string;
|
|
2344
2388
|
}
|
|
2345
2389
|
|
|
2346
2390
|
declare class CustomFieldCreate implements PageObject {
|
|
2347
|
-
readonly page: Page;
|
|
2348
2391
|
readonly saveButton: Locator;
|
|
2349
2392
|
readonly cancelButton: Locator;
|
|
2350
2393
|
readonly technicalNameInput: Locator;
|
|
@@ -2352,13 +2395,12 @@ declare class CustomFieldCreate implements PageObject {
|
|
|
2352
2395
|
readonly labelEnglishGBInput: Locator;
|
|
2353
2396
|
readonly assignToSelectionList: Locator;
|
|
2354
2397
|
readonly resultAssignToPopoverItemList: Locator;
|
|
2398
|
+
readonly page: Page;
|
|
2355
2399
|
constructor(page: Page);
|
|
2356
2400
|
url(): string;
|
|
2357
2401
|
}
|
|
2358
2402
|
|
|
2359
2403
|
declare class CustomFieldDetail extends CustomFieldCreate {
|
|
2360
|
-
readonly page: Page;
|
|
2361
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2362
2404
|
readonly newCustomFieldButton: Locator;
|
|
2363
2405
|
readonly customFieldEditDialog: Locator;
|
|
2364
2406
|
readonly newCustomFieldDialog: Locator;
|
|
@@ -2377,6 +2419,7 @@ declare class CustomFieldDetail extends CustomFieldCreate {
|
|
|
2377
2419
|
readonly customFieldDeleteCancelButton: Locator;
|
|
2378
2420
|
readonly customFieldDeleteButton: Locator;
|
|
2379
2421
|
readonly customFieldEditAvailableInShoppingCartCheckbox: Locator;
|
|
2422
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2380
2423
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2381
2424
|
getLineItemByCustomFieldName(customFieldName: string): Promise<Record<string, Locator>>;
|
|
2382
2425
|
url(customFieldUuid?: string): string;
|
|
@@ -2384,13 +2427,13 @@ declare class CustomFieldDetail extends CustomFieldCreate {
|
|
|
2384
2427
|
}
|
|
2385
2428
|
|
|
2386
2429
|
declare class CategoryDetail implements PageObject {
|
|
2387
|
-
readonly page: Page;
|
|
2388
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2389
2430
|
readonly saveButton: Locator;
|
|
2390
2431
|
readonly cancelButton: Locator;
|
|
2391
2432
|
readonly customFieldCard: Locator;
|
|
2392
2433
|
readonly customFieldSetTabs: Locator;
|
|
2393
2434
|
readonly customFieldSetTabCustomContent: Locator;
|
|
2435
|
+
readonly page: Page;
|
|
2436
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2394
2437
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2395
2438
|
getCustomFieldSetCardContentByName(customFieldSetName: string): Promise<Record<string, Locator>>;
|
|
2396
2439
|
url(categoryUuid: string): string;
|
|
@@ -2403,8 +2446,6 @@ declare class CategoryDetail implements PageObject {
|
|
|
2403
2446
|
}
|
|
2404
2447
|
|
|
2405
2448
|
declare class RuleCreate implements PageObject {
|
|
2406
|
-
readonly page: Page;
|
|
2407
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2408
2449
|
readonly nameInput: Locator;
|
|
2409
2450
|
readonly priorityInput: Locator;
|
|
2410
2451
|
readonly conditionTypeSelectionInput: Locator;
|
|
@@ -2413,14 +2454,14 @@ declare class RuleCreate implements PageObject {
|
|
|
2413
2454
|
readonly saveButton: Locator;
|
|
2414
2455
|
readonly cancelButton: Locator;
|
|
2415
2456
|
readonly valueNotAvailableTooltip: Locator;
|
|
2457
|
+
readonly page: Page;
|
|
2458
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2416
2459
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2417
2460
|
url(): string;
|
|
2418
2461
|
getSelectFieldListitem(selectField: Locator, listItem: string): Promise<Locator>;
|
|
2419
2462
|
}
|
|
2420
2463
|
|
|
2421
2464
|
declare class RuleDetail extends RuleCreate implements PageObject {
|
|
2422
|
-
readonly page: Page;
|
|
2423
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2424
2465
|
readonly shippingMethodAvailabilityRulesCard: Locator;
|
|
2425
2466
|
readonly shippingMethodAvailabilityRulesCardLink: Locator;
|
|
2426
2467
|
readonly shippingMethodAvailabilityRulesCardTable: Locator;
|
|
@@ -2445,36 +2486,34 @@ declare class RuleDetail extends RuleCreate implements PageObject {
|
|
|
2445
2486
|
}
|
|
2446
2487
|
|
|
2447
2488
|
declare class RuleListing implements PageObject {
|
|
2448
|
-
readonly page: Page;
|
|
2449
2489
|
readonly createRuleButton: Locator;
|
|
2490
|
+
readonly page: Page;
|
|
2450
2491
|
constructor(page: Page);
|
|
2451
2492
|
url(): string;
|
|
2452
2493
|
}
|
|
2453
2494
|
|
|
2454
2495
|
declare class ManufacturerCreate implements PageObject {
|
|
2455
|
-
readonly page: Page;
|
|
2456
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2457
2496
|
readonly saveButton: Locator;
|
|
2458
2497
|
readonly cancelButton: Locator;
|
|
2459
2498
|
readonly nameInput: Locator;
|
|
2460
2499
|
readonly websiteInput: Locator;
|
|
2461
2500
|
readonly descriptionInput: Locator;
|
|
2501
|
+
readonly page: Page;
|
|
2502
|
+
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2462
2503
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
2463
2504
|
url(): string;
|
|
2464
2505
|
}
|
|
2465
2506
|
|
|
2466
2507
|
declare class ManufacturerListing implements PageObject {
|
|
2467
|
-
readonly page: Page;
|
|
2468
2508
|
readonly addManufacturerButton: Locator;
|
|
2469
2509
|
readonly manufacturerRows: Locator;
|
|
2510
|
+
readonly page: Page;
|
|
2470
2511
|
constructor(page: Page);
|
|
2471
2512
|
getLineItemByManufacturerName(manufacturerName: string): Promise<Record<string, Locator>>;
|
|
2472
2513
|
url(): string;
|
|
2473
2514
|
}
|
|
2474
2515
|
|
|
2475
2516
|
declare class ManufacturerDetail extends ManufacturerCreate {
|
|
2476
|
-
readonly page: Page;
|
|
2477
|
-
readonly instanceMeta: HelperFixtureTypes['InstanceMeta'];
|
|
2478
2517
|
readonly customFieldCard: Locator;
|
|
2479
2518
|
readonly customFieldSetTabs: Locator;
|
|
2480
2519
|
readonly customFieldSetTabCustomContent: Locator;
|
|
@@ -2484,12 +2523,12 @@ declare class ManufacturerDetail extends ManufacturerCreate {
|
|
|
2484
2523
|
}
|
|
2485
2524
|
|
|
2486
2525
|
declare class ProductListing implements PageObject {
|
|
2487
|
-
readonly page: Page;
|
|
2488
2526
|
/**
|
|
2489
2527
|
* Multi selection
|
|
2490
2528
|
*/
|
|
2491
2529
|
readonly productsTable: Locator;
|
|
2492
2530
|
readonly bulkEditButton: Locator;
|
|
2531
|
+
readonly page: Page;
|
|
2493
2532
|
/**
|
|
2494
2533
|
* Bulk edit modal
|
|
2495
2534
|
*/
|
|
@@ -2511,7 +2550,6 @@ declare class ProductListing implements PageObject {
|
|
|
2511
2550
|
}
|
|
2512
2551
|
|
|
2513
2552
|
declare class ProductBulkEdit implements PageObject {
|
|
2514
|
-
readonly page: Page;
|
|
2515
2553
|
/**
|
|
2516
2554
|
* Bulk edit values
|
|
2517
2555
|
*/
|
|
@@ -2558,13 +2596,13 @@ declare class ProductBulkEdit implements PageObject {
|
|
|
2558
2596
|
readonly confirmModalLoadingSpinner: Locator;
|
|
2559
2597
|
readonly confirmModalSuccessHeader: Locator;
|
|
2560
2598
|
readonly confirmModalSuccessCloseButton: Locator;
|
|
2599
|
+
readonly page: Page;
|
|
2561
2600
|
constructor(page: Page);
|
|
2562
2601
|
url(): string;
|
|
2563
2602
|
getDropdownEntry(entry: string): Promise<Locator>;
|
|
2564
2603
|
}
|
|
2565
2604
|
|
|
2566
2605
|
declare class CustomerBulkEdit implements PageObject {
|
|
2567
|
-
readonly page: Page;
|
|
2568
2606
|
readonly applyChangesButton: Locator;
|
|
2569
2607
|
readonly filtersResultPopoverItemList: Locator;
|
|
2570
2608
|
readonly changeCustomerGroupCheckbox: Locator;
|
|
@@ -2588,6 +2626,7 @@ declare class CustomerBulkEdit implements PageObject {
|
|
|
2588
2626
|
readonly confirmModalApplyChangesButton: Locator;
|
|
2589
2627
|
readonly confirmModalSuccessHeader: Locator;
|
|
2590
2628
|
readonly confirmModalSuccessCloseButton: Locator;
|
|
2629
|
+
readonly page: Page;
|
|
2591
2630
|
constructor(page: Page);
|
|
2592
2631
|
getPageHeadline(customerCount: number): Promise<Locator>;
|
|
2593
2632
|
getCustomFieldInputByName(customFieldName: string): Promise<Locator>;
|
|
@@ -2596,26 +2635,26 @@ declare class CustomerBulkEdit implements PageObject {
|
|
|
2596
2635
|
}
|
|
2597
2636
|
|
|
2598
2637
|
declare class SettingsListing implements PageObject {
|
|
2599
|
-
readonly page: Page;
|
|
2600
2638
|
readonly contentView: Locator;
|
|
2601
2639
|
readonly header: Locator;
|
|
2640
|
+
readonly page: Page;
|
|
2602
2641
|
constructor(page: Page);
|
|
2603
2642
|
url(): string;
|
|
2604
2643
|
}
|
|
2605
2644
|
|
|
2606
2645
|
declare class DocumentListing implements PageObject {
|
|
2607
|
-
readonly page: Page;
|
|
2608
2646
|
readonly addDocumentButton: Locator;
|
|
2609
2647
|
readonly invoiceLink: Locator;
|
|
2648
|
+
readonly page: Page;
|
|
2610
2649
|
constructor(page: Page);
|
|
2611
2650
|
url(): string;
|
|
2612
2651
|
}
|
|
2613
2652
|
|
|
2614
2653
|
declare class DocumentDetail implements PageObject {
|
|
2615
|
-
readonly page: Page;
|
|
2616
2654
|
readonly showInAccountSwitch: Locator;
|
|
2617
2655
|
readonly saveButton: Locator;
|
|
2618
2656
|
readonly documentTypeSelect: Locator;
|
|
2657
|
+
readonly page: Page;
|
|
2619
2658
|
constructor(page: Page);
|
|
2620
2659
|
url(documentId: string): string;
|
|
2621
2660
|
}
|
|
@@ -2853,6 +2892,8 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2853
2892
|
BulkEditCustomers: Task;
|
|
2854
2893
|
} & {
|
|
2855
2894
|
AssignEntitiesToRule: Task;
|
|
2895
|
+
} & {
|
|
2896
|
+
CreateFlow: Task;
|
|
2856
2897
|
} & {
|
|
2857
2898
|
LoginViaReviewsTab: Task;
|
|
2858
2899
|
} & {
|
|
@@ -2907,4 +2948,4 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2907
2948
|
SelectProductFilterOption: Task;
|
|
2908
2949
|
}, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions & FixtureTypes>;
|
|
2909
2950
|
|
|
2910
|
-
export { type AccountData, type Address, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country$1 as Country, type CreatedRecord, type Currency$2 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Flow, type FlowTemplate, type Language$2 as Language, type Manufacturer, type Media, type Options, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type PaymentMethod$1 as PaymentMethod, type Price, type Product, type ProductCrossSelling, type ProductPrice, type ProductReview, type Promotion, type PromotionDiscount, type PropertyGroup, type PropertyGroupOption, type RegistrationData, type Rule, type RuleAssignmentEntity, RuleType, type SalesChannel, type SalesChannelAnalytics, type SalesChannelDomain, type SalesChannelRecord, type Salutation, type ShippingMethod$1 as ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax$1 as Tax, type TaxRules, TestDataService, type VariantListingConfig, compareFlowTemplateWithFlow, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlow, getFlowId, getFlowTemplate, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getShippingMethodId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, hideElements, isSaaSInstance, isThemeCompiled, replaceElements, setOrderStatus, setViewport, test };
|
|
2951
|
+
export { type AccountData, type Address, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country$1 as Country, type CreatedRecord, type Currency$2 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Flow, type FlowConfig, type FlowTemplate, type Language$2 as Language, type Manufacturer, type Media, type Options, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type PaymentMethod$1 as PaymentMethod, type Price, type Product, type ProductCrossSelling, type ProductPrice, type ProductReview, type Promotion, type PromotionDiscount, type PropertyGroup, type PropertyGroupOption, type RegistrationData, type Rule, type RuleAssignmentEntity, RuleType, type SalesChannel, type SalesChannelAnalytics, type SalesChannelDomain, type SalesChannelRecord, type Salutation, type ShippingMethod$1 as ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax$1 as Tax, type TaxRules, TestDataService, type VariantListingConfig, compareFlowTemplateWithFlow, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlow, getFlowId, getFlowTemplate, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getShippingMethodId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, hideElements, isSaaSInstance, isThemeCompiled, replaceElements, setOrderStatus, setViewport, test };
|