We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e2e74 commit f2f2b0dCopy full SHA for f2f2b0d
2 files changed
src/pages/product/productShow/ProductShowPage.ts
@@ -34,6 +34,10 @@ class ProductShowPage extends BasePageModel {
34
get stockHistoryTab() {
35
return this.page.getByRole('link', { name: 'Stock History' });
36
}
37
+
38
+ get editProductkButton() {
39
+ return this.page.getByRole('link', { name: 'Edit Product' });
40
+ }
41
42
43
export default ProductShowPage;
src/pages/product/productShow/tabs/InStockTabSection.ts
@@ -44,6 +44,10 @@ class Row extends BasePageModel {
44
.getByRole('link');
45
46
47
+ get defaultBinLocation() {
48
+ return this.row.locator('.line').getByText('Default');
49
50
51
get zoneLocation() {
52
return this.row.locator('.line').locator('.line-base').getByRole('link');
53
0 commit comments