@shopware-ag/acceptance-test-suite 11.16.2 → 11.16.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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1912,6 +1912,12 @@ declare class OrderDetail implements PageObject {
|
|
|
1912
1912
|
readonly dataGridContextButton: Locator;
|
|
1913
1913
|
readonly orderTag: Locator;
|
|
1914
1914
|
readonly itemsCardHeader: Locator;
|
|
1915
|
+
/**
|
|
1916
|
+
* Tabs
|
|
1917
|
+
*/
|
|
1918
|
+
readonly generalTabLink: Locator;
|
|
1919
|
+
readonly detailsTabLink: Locator;
|
|
1920
|
+
readonly documentsTabLink: Locator;
|
|
1915
1921
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
1916
1922
|
url(orderId: string, tabName?: string): string;
|
|
1917
1923
|
getCustomFieldCardLocators(customFieldSetName: string, customFieldTextName: string): Promise<{
|
package/dist/index.d.ts
CHANGED
|
@@ -1912,6 +1912,12 @@ declare class OrderDetail implements PageObject {
|
|
|
1912
1912
|
readonly dataGridContextButton: Locator;
|
|
1913
1913
|
readonly orderTag: Locator;
|
|
1914
1914
|
readonly itemsCardHeader: Locator;
|
|
1915
|
+
/**
|
|
1916
|
+
* Tabs
|
|
1917
|
+
*/
|
|
1918
|
+
readonly generalTabLink: Locator;
|
|
1919
|
+
readonly detailsTabLink: Locator;
|
|
1920
|
+
readonly documentsTabLink: Locator;
|
|
1915
1921
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
1916
1922
|
url(orderId: string, tabName?: string): string;
|
|
1917
1923
|
getCustomFieldCardLocators(customFieldSetName: string, customFieldTextName: string): Promise<{
|
package/dist/index.mjs
CHANGED
|
@@ -4945,6 +4945,12 @@ class OrderDetail {
|
|
|
4945
4945
|
__publicField$v(this, "dataGridContextButton");
|
|
4946
4946
|
__publicField$v(this, "orderTag");
|
|
4947
4947
|
__publicField$v(this, "itemsCardHeader");
|
|
4948
|
+
/**
|
|
4949
|
+
* Tabs
|
|
4950
|
+
*/
|
|
4951
|
+
__publicField$v(this, "generalTabLink");
|
|
4952
|
+
__publicField$v(this, "detailsTabLink");
|
|
4953
|
+
__publicField$v(this, "documentsTabLink");
|
|
4948
4954
|
this.saveButton = page.locator(".sw-order-detail__smart-bar-save-button");
|
|
4949
4955
|
this.dataGridContextButton = page.locator(".sw-data-grid__actions-menu").and(page.getByRole("button"));
|
|
4950
4956
|
this.orderTag = page.locator(".sw-select-selection-list__item");
|
|
@@ -4953,6 +4959,9 @@ class OrderDetail {
|
|
|
4953
4959
|
} else {
|
|
4954
4960
|
this.itemsCardHeader = page.locator(".mt-card__header").getByText("Items");
|
|
4955
4961
|
}
|
|
4962
|
+
this.generalTabLink = page.getByRole("tab", { name: "General" });
|
|
4963
|
+
this.detailsTabLink = page.getByRole("tab", { name: "Details" });
|
|
4964
|
+
this.documentsTabLink = page.getByRole("tab", { name: "Documents" });
|
|
4956
4965
|
}
|
|
4957
4966
|
url(orderId, tabName = "general") {
|
|
4958
4967
|
return `#/sw/order/detail/${orderId}/${tabName}`;
|