Smoke test daily #285
Annotations
10 errors, 7 warnings, and 1 notice
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/tests/customize-store/transitional.spec.js#L165
1) [Chrome] › customize-store/transitional.spec.js:118:2 › Store owner can view the Transitional page › Clicking on "Share feedback" should open the survey modal
Error: locator.click: Timeout 20000ms exceeded.
Call log:
- waiting for getByRole('button', { name: 'Send' })
- locator resolved to <button disabled type="button" class="components-button …>Send</button>
- attempting click action
- waiting for element to be visible, enabled and stable
- element is not enabled - waiting...
163 | .locator( 'text=I wanted to design my own theme.' )
164 | .click();
> 165 | await sendButton.click();
| ^
166 | await expect( shareFeedbackModal ).toBeHidden();
167 |
168 | await expect( shareFeedbackButton ).toBeHidden();
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/customize-store/transitional.spec.js:165:20
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/utils/options.js#L20
1) [Chrome] › customize-store/transitional.spec.js:118:2 › Store owner can view the Transitional page › Clicking on "Share feedback" should open the survey modal
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: apiRequestContext.post: 400 Bad Request
Call log:
- → POST http://localhost:8086/wp-json/e2e-options/update
- user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.28 Safari/537.36
- accept: */*
- accept-encoding: gzip,deflate,br
- Authorization: Basic YWRtaW46cGFzc3dvcmQ=
- cookie:
- content-type: application/json
- content-length: 88
- ← 400 Bad Request
- date: Tue, 30 Apr 2024 03:50:21 GMT
- server: Apache/2.4.54 (Debian)
- x-powered-by: PHP/7.4.33
- x-robots-tag: noindex
- link: <http://localhost:8086/wp-json/>; rel="https://api.w.org/"
- x-content-type-options: nosniff
- access-control-expose-headers: X-WP-Total, X-WP-TotalPages, Link
- access-control-allow-headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type
- allow: POST
- expires: Wed, 11 Jan 1984 05:00:00 GMT
- cache-control: no-cache, must-revalidate, max-age=0, no-store, private
- content-length: 22
- connection: close
- content-type: application/json; charset=UTF-8
at ../utils/options.js:20
18 | } );
19 |
> 20 | await apiContext.post( '/wp-json/e2e-options/update', {
| ^
21 | failOnStatusCode: true,
22 | data: { option_name: optionName, option_value: optionValue },
23 | } );
at setOption (/home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/utils/options.js:20:19)
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/customize-store/transitional.spec.js:130:3
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/utils/options.js#L20
1) [Chrome] › customize-store/transitional.spec.js:118:2 › Store owner can view the Transitional page › Clicking on "Share feedback" should open the survey modal
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: apiRequestContext.post: 400 Bad Request
Call log:
- → POST http://localhost:8086/wp-json/e2e-options/update
- user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.28 Safari/537.36
- accept: */*
- accept-encoding: gzip,deflate,br
- Authorization: Basic YWRtaW46cGFzc3dvcmQ=
- cookie:
- content-type: application/json
- content-length: 88
- ← 400 Bad Request
- date: Tue, 30 Apr 2024 03:50:26 GMT
- server: Apache/2.4.54 (Debian)
- x-powered-by: PHP/7.4.33
- x-robots-tag: noindex
- link: <http://localhost:8086/wp-json/>; rel="https://api.w.org/"
- x-content-type-options: nosniff
- access-control-expose-headers: X-WP-Total, X-WP-TotalPages, Link
- access-control-allow-headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type
- allow: POST
- expires: Wed, 11 Jan 1984 05:00:00 GMT
- cache-control: no-cache, must-revalidate, max-age=0, no-store, private
- content-length: 22
- connection: close
- content-type: application/json; charset=UTF-8
at ../utils/options.js:20
18 | } );
19 |
> 20 | await apiContext.post( '/wp-json/e2e-options/update', {
| ^
21 | failOnStatusCode: true,
22 | data: { option_name: optionName, option_value: optionValue },
23 | } );
at setOption (/home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/utils/options.js:20:19)
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/customize-store/transitional.spec.js:130:3
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js#L511
2) [Chrome] › merchant/create-shipping-zones.spec.js:507:2 › Verifies shipping options from customer perspective › allows customer to benefit from a free Local pickup if on Mayne Island
Error: locator.click: Timeout 20000ms exceeded.
Call log:
- waiting for locator('a.shipping-calculator-button')
509 | } ) => {
510 | await page.goto( 'cart/' );
> 511 | await page.locator( 'a.shipping-calculator-button' ).click();
| ^
512 | await page.locator( '#calc_shipping_country' ).selectOption( 'CA' );
513 | await page.locator( '#calc_shipping_state' ).selectOption( 'BC' );
514 | await page.locator( '#calc_shipping_postcode' ).fill( maynePostal );
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js:511:56
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js#L511
2) [Chrome] › merchant/create-shipping-zones.spec.js:507:2 › Verifies shipping options from customer perspective › allows customer to benefit from a free Local pickup if on Mayne Island
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.click: Timeout 20000ms exceeded.
Call log:
- waiting for locator('a.shipping-calculator-button')
509 | } ) => {
510 | await page.goto( 'cart/' );
> 511 | await page.locator( 'a.shipping-calculator-button' ).click();
| ^
512 | await page.locator( '#calc_shipping_country' ).selectOption( 'CA' );
513 | await page.locator( '#calc_shipping_state' ).selectOption( 'BC' );
514 | await page.locator( '#calc_shipping_postcode' ).fill( maynePostal );
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js:511:56
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js#L511
2) [Chrome] › merchant/create-shipping-zones.spec.js:507:2 › Verifies shipping options from customer perspective › allows customer to benefit from a free Local pickup if on Mayne Island
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.click: Timeout 20000ms exceeded.
Call log:
- waiting for locator('a.shipping-calculator-button')
509 | } ) => {
510 | await page.goto( 'cart/' );
> 511 | await page.locator( 'a.shipping-calculator-button' ).click();
| ^
512 | await page.locator( '#calc_shipping_country' ).selectOption( 'CA' );
513 | await page.locator( '#calc_shipping_state' ).selectOption( 'BC' );
514 | await page.locator( '#calc_shipping_postcode' ).fill( maynePostal );
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js:511:56
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js#L533
3) [Chrome] › merchant/create-shipping-zones.spec.js:528:2 › Verifies shipping options from customer perspective › allows customer to benefit from a free Free shipping if in BC
Error: locator.click: Timeout 20000ms exceeded.
Call log:
- waiting for locator('a.shipping-calculator-button')
531 | await page.goto( 'cart/' );
532 |
> 533 | await page.locator( 'a.shipping-calculator-button' ).click();
| ^
534 | await page.locator( '#calc_shipping_country' ).selectOption( 'CA' );
535 | await page.locator( '#calc_shipping_state' ).selectOption( 'BC' );
536 | await page.locator( 'button[name=calc_shipping]' ).click();
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js:533:56
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js#L533
3) [Chrome] › merchant/create-shipping-zones.spec.js:528:2 › Verifies shipping options from customer perspective › allows customer to benefit from a free Free shipping if in BC
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.click: Timeout 20000ms exceeded.
Call log:
- waiting for locator('a.shipping-calculator-button')
531 | await page.goto( 'cart/' );
532 |
> 533 | await page.locator( 'a.shipping-calculator-button' ).click();
| ^
534 | await page.locator( '#calc_shipping_country' ).selectOption( 'CA' );
535 | await page.locator( '#calc_shipping_state' ).selectOption( 'BC' );
536 | await page.locator( 'button[name=calc_shipping]' ).click();
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js:533:56
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js#L533
3) [Chrome] › merchant/create-shipping-zones.spec.js:528:2 › Verifies shipping options from customer perspective › allows customer to benefit from a free Free shipping if in BC
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.click: Timeout 20000ms exceeded.
Call log:
- waiting for locator('a.shipping-calculator-button')
531 | await page.goto( 'cart/' );
532 |
> 533 | await page.locator( 'a.shipping-calculator-button' ).click();
| ^
534 | await page.locator( '#calc_shipping_country' ).selectOption( 'CA' );
535 | await page.locator( '#calc_shipping_state' ).selectOption( 'BC' );
536 | await page.locator( 'button[name=calc_shipping]' ).click();
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js:533:56
|
Run the rest of E2E tests:
plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js#L554
4) [Chrome] › merchant/create-shipping-zones.spec.js:549:2 › Verifies shipping options from customer perspective › allows customer to pay for a Flat rate shipping method
Error: locator.click: Timeout 20000ms exceeded.
Call log:
- waiting for locator('a.shipping-calculator-button')
552 | await page.goto( 'cart/' );
553 |
> 554 | await page.locator( 'a.shipping-calculator-button' ).click();
| ^
555 | await page.locator( '#calc_shipping_country' ).selectOption( 'CA' );
556 | await page.locator( '#calc_shipping_state' ).selectOption( 'AB' );
557 | await page.locator( '#calc_shipping_postcode' ).fill( 'T2T 1B3' );
at /home/runner/work/woocommerce/woocommerce/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-shipping-zones.spec.js:554:56
|
Run the rest of E2E tests:
plugins/woocommerce/[Chrome] › customize-store/assembler/color-picker.spec.js#L1
plugins/woocommerce/[Chrome] › customize-store/assembler/color-picker.spec.js took 5.4m
|
Run the rest of E2E tests:
plugins/woocommerce/[Chrome] › merchant/create-shipping-zones.spec.js#L1
plugins/woocommerce/[Chrome] › merchant/create-shipping-zones.spec.js took 4.2m
|
Run the rest of E2E tests:
plugins/woocommerce/[Chrome] › customize-store/assembler/logo-picker/logo-picker.spec.js#L1
plugins/woocommerce/[Chrome] › customize-store/assembler/logo-picker/logo-picker.spec.js took 1.8m
|
Run the rest of E2E tests:
plugins/woocommerce/[Chrome] › merchant/create-restricted-coupons.spec.js#L1
plugins/woocommerce/[Chrome] › merchant/create-restricted-coupons.spec.js took 1.5m
|
Run the rest of E2E tests:
plugins/woocommerce/[Chrome] › customize-store/assembler/homepage.spec.js#L1
plugins/woocommerce/[Chrome] › customize-store/assembler/homepage.spec.js took 1.3m
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/upload-artifact@v3, actions/github-script@v6. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "api-daily--run-285", "k6-daily-update-site--run-285", "plugin-blocks", "Smoke tests on trunk with Gutenberg - Nightly plugin installed (run 285)", "Smoke tests on trunk with Gutenberg plugin installed (run 285)", "Smoke tests on trunk with WooCommerce PayPal Payments plugin installed (run 285)", "Smoke tests on trunk with WooCommerce Shipping & Tax plugin installed (run 285)", "Smoke tests on trunk with WooPayments plugin installed (run 285)".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|
Run the rest of E2E tests
5 failed
[Chrome] › customize-store/transitional.spec.js:118:2 › Store owner can view the Transitional page › Clicking on "Share feedback" should open the survey modal
[Chrome] › merchant/create-shipping-zones.spec.js:507:2 › Verifies shipping options from customer perspective › allows customer to benefit from a free Local pickup if on Mayne Island
[Chrome] › merchant/create-shipping-zones.spec.js:528:2 › Verifies shipping options from customer perspective › allows customer to benefit from a free Free shipping if in BC
[Chrome] › merchant/create-shipping-zones.spec.js:549:2 › Verifies shipping options from customer perspective › allows customer to pay for a Flat rate shipping method
[Chrome] › merchant/create-woocommerce-blocks.spec.js:186:2 › Add WooCommerce Blocks Into Page › can insert all WooCommerce blocks into page
1 flaky
[Chrome] › customize-store/loading-screen/loading-screen.spec.js:117:2 › Assembler - Loading Page › should hide loading screen and steps on subsequent runs
2 skipped
270 did not run
145 passed (27.8m)
|
The logs for this run have expired and are no longer available.
Loading