@shopware-ag/acceptance-test-suite 5.2.0 → 5.3.0
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 +36 -0
- package/dist/index.d.ts +36 -0
- package/dist/index.mjs +618 -508
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1534,6 +1534,36 @@ declare class RuleCreate implements PageObject {
|
|
|
1534
1534
|
url(): string;
|
|
1535
1535
|
}
|
|
1536
1536
|
|
|
1537
|
+
declare class ManufacturerCreate implements PageObject {
|
|
1538
|
+
readonly page: Page;
|
|
1539
|
+
readonly saveButton: Locator;
|
|
1540
|
+
readonly cancelButton: Locator;
|
|
1541
|
+
readonly nameInput: Locator;
|
|
1542
|
+
readonly websiteInput: Locator;
|
|
1543
|
+
readonly descriptionInput: Locator;
|
|
1544
|
+
constructor(page: Page);
|
|
1545
|
+
url(): string;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
declare class ManufacturerListing implements PageObject {
|
|
1549
|
+
readonly page: Page;
|
|
1550
|
+
readonly addManufacturerButton: Locator;
|
|
1551
|
+
readonly manufacturerRows: Locator;
|
|
1552
|
+
constructor(page: Page);
|
|
1553
|
+
getLineItemByManufacturerName(manufacturerName: string): Promise<Record<string, Locator>>;
|
|
1554
|
+
url(): string;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
declare class ManufacturerDetail extends ManufacturerCreate {
|
|
1558
|
+
readonly page: Page;
|
|
1559
|
+
readonly customFieldCard: Locator;
|
|
1560
|
+
readonly customFieldSetTabs: Locator;
|
|
1561
|
+
readonly customFieldSetTabCustomContent: Locator;
|
|
1562
|
+
constructor(page: Page);
|
|
1563
|
+
getCustomFieldSetCardContentByName(customFieldSetName: string): Promise<Record<string, Locator>>;
|
|
1564
|
+
url(manufacturerUuid?: string): string;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1537
1567
|
interface AdministrationPageTypes {
|
|
1538
1568
|
AdminProductDetail: ProductDetail;
|
|
1539
1569
|
AdminOrderDetail: OrderDetail;
|
|
@@ -1554,6 +1584,9 @@ interface AdministrationPageTypes {
|
|
|
1554
1584
|
AdminCustomFieldListing: CustomFieldListing;
|
|
1555
1585
|
AdminCustomFieldCreate: CustomFieldCreate;
|
|
1556
1586
|
AdminCustomFieldDetail: CustomFieldDetail;
|
|
1587
|
+
AdminManufacturerCreate: ManufacturerCreate;
|
|
1588
|
+
AdminManufacturerListing: ManufacturerListing;
|
|
1589
|
+
AdminManufacturerDetail: ManufacturerDetail;
|
|
1557
1590
|
}
|
|
1558
1591
|
declare const AdminPageObjects: {
|
|
1559
1592
|
ProductDetail: typeof ProductDetail;
|
|
@@ -1575,6 +1608,9 @@ declare const AdminPageObjects: {
|
|
|
1575
1608
|
CustomFieldListing: typeof CustomFieldListing;
|
|
1576
1609
|
CustomFieldCreate: typeof CustomFieldCreate;
|
|
1577
1610
|
CustomFieldDetail: typeof CustomFieldDetail;
|
|
1611
|
+
ManufacturerCreate: typeof ManufacturerCreate;
|
|
1612
|
+
ManufacturerDetail: typeof ManufacturerDetail;
|
|
1613
|
+
ManufacturerListing: typeof ManufacturerListing;
|
|
1578
1614
|
};
|
|
1579
1615
|
|
|
1580
1616
|
interface DataFixtureTypes {
|
package/dist/index.d.ts
CHANGED
|
@@ -1534,6 +1534,36 @@ declare class RuleCreate implements PageObject {
|
|
|
1534
1534
|
url(): string;
|
|
1535
1535
|
}
|
|
1536
1536
|
|
|
1537
|
+
declare class ManufacturerCreate implements PageObject {
|
|
1538
|
+
readonly page: Page;
|
|
1539
|
+
readonly saveButton: Locator;
|
|
1540
|
+
readonly cancelButton: Locator;
|
|
1541
|
+
readonly nameInput: Locator;
|
|
1542
|
+
readonly websiteInput: Locator;
|
|
1543
|
+
readonly descriptionInput: Locator;
|
|
1544
|
+
constructor(page: Page);
|
|
1545
|
+
url(): string;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
declare class ManufacturerListing implements PageObject {
|
|
1549
|
+
readonly page: Page;
|
|
1550
|
+
readonly addManufacturerButton: Locator;
|
|
1551
|
+
readonly manufacturerRows: Locator;
|
|
1552
|
+
constructor(page: Page);
|
|
1553
|
+
getLineItemByManufacturerName(manufacturerName: string): Promise<Record<string, Locator>>;
|
|
1554
|
+
url(): string;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
declare class ManufacturerDetail extends ManufacturerCreate {
|
|
1558
|
+
readonly page: Page;
|
|
1559
|
+
readonly customFieldCard: Locator;
|
|
1560
|
+
readonly customFieldSetTabs: Locator;
|
|
1561
|
+
readonly customFieldSetTabCustomContent: Locator;
|
|
1562
|
+
constructor(page: Page);
|
|
1563
|
+
getCustomFieldSetCardContentByName(customFieldSetName: string): Promise<Record<string, Locator>>;
|
|
1564
|
+
url(manufacturerUuid?: string): string;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1537
1567
|
interface AdministrationPageTypes {
|
|
1538
1568
|
AdminProductDetail: ProductDetail;
|
|
1539
1569
|
AdminOrderDetail: OrderDetail;
|
|
@@ -1554,6 +1584,9 @@ interface AdministrationPageTypes {
|
|
|
1554
1584
|
AdminCustomFieldListing: CustomFieldListing;
|
|
1555
1585
|
AdminCustomFieldCreate: CustomFieldCreate;
|
|
1556
1586
|
AdminCustomFieldDetail: CustomFieldDetail;
|
|
1587
|
+
AdminManufacturerCreate: ManufacturerCreate;
|
|
1588
|
+
AdminManufacturerListing: ManufacturerListing;
|
|
1589
|
+
AdminManufacturerDetail: ManufacturerDetail;
|
|
1557
1590
|
}
|
|
1558
1591
|
declare const AdminPageObjects: {
|
|
1559
1592
|
ProductDetail: typeof ProductDetail;
|
|
@@ -1575,6 +1608,9 @@ declare const AdminPageObjects: {
|
|
|
1575
1608
|
CustomFieldListing: typeof CustomFieldListing;
|
|
1576
1609
|
CustomFieldCreate: typeof CustomFieldCreate;
|
|
1577
1610
|
CustomFieldDetail: typeof CustomFieldDetail;
|
|
1611
|
+
ManufacturerCreate: typeof ManufacturerCreate;
|
|
1612
|
+
ManufacturerDetail: typeof ManufacturerDetail;
|
|
1613
|
+
ManufacturerListing: typeof ManufacturerListing;
|
|
1578
1614
|
};
|
|
1579
1615
|
|
|
1580
1616
|
interface DataFixtureTypes {
|