Exclude pothog traffic (#5342) #148
Annotations
10 errors and 1 notice
Run playwright tests
Testing stopped early after 10 maximum allowed failures.
|
|
Run playwright tests:
playwright/pages/refundPage.ts#L56
1) [e2e] › orders.spec.ts:267:5 › TC: SALEOR_191 Refund products from the fully paid order @e2e @Refunds
Error: locator.click: Test timeout of 105000ms exceeded.
Call log:
- waiting for locator('table tr').filter({ hasText: 'Bean Juice' }).locator(getByTestId('all-button'))
- locator resolved to <button disabled type="button" data-test-id="all-button" data-macaw-ui-component="Button" class="_18fs8ps2rc _18fs8ps310 _18fs8ps280 _18fs8ps2ho _18fs8ps10 _18fs8ps1l _18fs8ps1mr _18fs8ps3 _18fs8ps3z0 _18fs8ps1zu _18fs8ps3t0 _18fs8ps3ti _18fs8ps1lu _18fs8ps1m0 _18fs8ps1li _18fs8ps1lo _18fs8ps3kc _18fs8ps3l1 _18fs8ps3ks _18fs8ps3lh _18fs8ps3iu _18fs8ps3c0 _18fs8ps3e6 _18fs8ps3uo _18fs8ps3v1 _18fs8ps3us _18fs8ps3w5 _18fs8ps3w6 _18fs8ps250 _18fs8ps21o _18fs8ps22d _18fs8ps224 _18fs8ps22t _18fs8ps236 _1tm5…>All</button>
- attempting click action
2 × waiting for element to be visible, enabled and stable
- element is not enabled
- retrying click action
- waiting 20ms
2 × waiting for element to be visible, enabled and stable
- element is not enabled
- retrying click action
- waiting 100ms
177 × waiting for element to be visible, enabled and stable
- element is not enabled
- retrying click action
- waiting 500ms
at ../pages/refundPage.ts:56
54 | const productRow = await this.getProductRow(productName);
55 |
> 56 | await productRow.locator(this.allButton).click();
| ^
57 |
58 | const maxLineRefundQuantityText = await productRow
59 | .locator(this.maxLineRefundQuantity)
at RefundPage.pickAllProductQuantityToRefund (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/refundPage.ts:56:46)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/orders.spec.ts:279:3
|
|
Run playwright tests:
playwright/pages/ordersPage.ts#L141
2) [e2e] › orders.spec.ts:331:7 › TC: SALEOR_193 Update order with non-manual refund in FAILURE status @e2e @Refunds
Error: locator.click: Test timeout of 35000ms exceeded.
Call log:
- waiting for getByTestId('refund-list').locator('tr').filter({ hasText: 'FAILURE' }).locator(getByTestId('edit-refund-button').locator('button'))
at ../pages/ordersPage.ts:141
139 | const refund = this.orderRefundList.locator("tr").filter({ hasText: refundInfo });
140 |
> 141 | await refund.locator(this.editRefundButton).click();
| ^
142 | await this.waitForDOMToFullyLoad();
143 | }
144 |
at OrdersPage.clickEditRefundButton (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/ordersPage.ts:141:49)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/orders.spec.ts:341:22
|
|
Run playwright tests:
playwright/pages/ordersPage.ts#L141
3) [e2e] › orders.spec.ts:331:7 › TC: SALEOR_193 Update order with non-manual refund in DRAFT status @e2e @Refunds
Error: locator.click: Test timeout of 35000ms exceeded.
Call log:
- waiting for getByTestId('refund-list').locator('tr').filter({ hasText: 'DRAFT' }).locator(getByTestId('edit-refund-button').locator('button'))
at ../pages/ordersPage.ts:141
139 | const refund = this.orderRefundList.locator("tr").filter({ hasText: refundInfo });
140 |
> 141 | await refund.locator(this.editRefundButton).click();
| ^
142 | await this.waitForDOMToFullyLoad();
143 | }
144 |
at OrdersPage.clickEditRefundButton (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/ordersPage.ts:141:49)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/orders.spec.ts:341:22
|
Run playwright tests:
playwright/tests/orders.spec.ts#L375
4) [e2e] › orders.spec.ts:352:5 › TC: SALEOR_215 Inline discount is applied in a draft order @draft @Discounts @e2e
Error: expect(received).toContain(expected) // indexOf
Expected substring: "20"
Received string: "PLN80.00"
373 | ]);
374 |
> 375 | expect(initialTotal).toContain(productAlreadyInBasket.price.toString());
| ^
376 |
377 | await draftOrdersPage.clickAddProductsButton();
378 | await draftOrdersPage.addProductsDialog.searchForProductInDialog(discountedProduct.name);
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/orders.spec.ts:375:24
|
|
Run playwright tests:
playwright/pages/pageElements/rightSideDetailsSection.ts#L134
5) [e2e] › orders.spec.ts:467:5 › TC: SALEOR_217 Complete basic order for non existing customer @e2e @order
Error: locator.click: Test timeout of 35000ms exceeded.
Call log:
- waiting for getByTestId('edit-customer')
at ../pages/pageElements/rightSideDetailsSection.ts:134
132 |
133 | async clickEditCustomerButton() {
> 134 | await this.editCustomerButton.click();
| ^
135 | }
136 |
137 | async expandShippingZonesSection() {
at RightSideDetailsPage.clickEditCustomerButton (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/pageElements/rightSideDetailsSection.ts:134:35)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/orders.spec.ts:472:41
|
Run playwright tests
10 failed
[e2e] › orders.spec.ts:267:5 › TC: SALEOR_191 Refund products from the fully paid order @e2e @Refunds
[e2e] › orders.spec.ts:331:7 › TC: SALEOR_193 Update order with non-manual refund in FAILURE status @e2e @Refunds
[e2e] › orders.spec.ts:331:7 › TC: SALEOR_193 Update order with non-manual refund in DRAFT status @e2e @Refunds
[e2e] › orders.spec.ts:352:5 › TC: SALEOR_215 Inline discount is applied in a draft order @draft @Discounts @e2e
[e2e] › orders.spec.ts:467:5 › TC: SALEOR_217 Complete basic order for non existing customer @e2e @order
[e2e] › pageTypes.spec.ts:23:5 › TC: SALEOR_188 As an admin user I can update page type@e2e @page-type
[e2e] › pageTypes.spec.ts:37:5 › TC: SALEOR_189 As an admin user I can delete page type with assigned content@e2e @page-type
[e2e] › pageTypes.spec.ts:52:5 › TC: SALEOR_190 As an admin user I can delete several page types@e2e @page-type
[e2e] › permissionGroup.spec.ts:82:5 › TC: SALEOR_134 Should be able to edit existing permission group @permissions @e2e
[e2e] › permissionGroup.spec.ts:165:5 › TC: SALEOR_135 Should be able to delete single permission group @permissions @e2e
3 interrupted
[e2e] › product.spec.ts:20:5 › TC: SALEOR_3 Create basic product with variants @e2e @Product ───
[e2e] › product.spec.ts:33:5 › TC: SALEOR_5 Create basic - single product type - product without variants @e2e @Product
[e2e] › product.spec.ts:46:5 › TC: SALEOR_26 Create basic info variant - via edit variant page @e2e @Product
85 did not run
20 passed (2.1m)
|
Loading