Skip to content

Debugging Desktop E2E Tests with Podman #268

Debugging Desktop E2E Tests with Podman

Debugging Desktop E2E Tests with Podman #268

GitHub Actions / JUnit Test Report failed Oct 25, 2024 in 0s

139 tests run, 110 passed, 22 skipped, 7 failed.

Annotations

Check failure on line 66 in ts

See this annotation in the file changed.

@github-actions github-actions / JUnit Test Report

ts.Verification of kube context management @smoke › Can load kube contexts in Kubernetes page

kubernetes-context-smoke.spec.ts:61:5 Can load kube contexts in Kubernetes page
Raw output
[chromium] › tests\playwright\src\specs\kubernetes-context-smoke.spec.ts:61:5 › Verification of kube context management @smoke › Can load kube contexts in Kubernetes page 

    Error: expect(received).toBeFalsy()

    Received: true

    Call Log:
    - Timeout 10000ms exceeded while waiting on the predicate

      64 |       await playExpect(kubePage.heading).toBeVisible();
      65 |
    > 66 |       await playExpect.poll(async () => await kubePage.pageIsEmpty(), { timeout: 10000 }).toBeFalsy();
         |       ^
      67 |       for (const context of testContexts) {
      68 |         const row = await kubePage.getContextRowByName(context);
      69 |         await playExpect(row).toBeVisible();

        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\kubernetes-context-smoke.spec.ts:66:7

Check failure on line 196 in ts

See this annotation in the file changed.

@github-actions github-actions / JUnit Test Report

ts.Kubernetes resources End-to-End test › ConfigMaps and Secrets lifecycle test › Can load config and secrets via env. var in pod

kubernetes.spec.ts:188:7 Can load config and secrets via env. var in pod
Raw output
[chromium] › tests\playwright\src\specs\kubernetes.spec.ts:188:7 › Kubernetes resources End-to-End test › ConfigMaps and Secrets lifecycle test › Can load config and secrets via env. var in pod 

    Error: expect(received).toBeTruthy()

    Received: undefined

    Call Log:
    - Timeout 5000ms exceeded while waiting on the predicate

      194 |
      195 |         await playExpect(podsPage.heading).toBeVisible();
    > 196 |         await playExpect.poll(async () => podsPage.getPodRowByName(SECRET_POD_NAME)).toBeTruthy();
          |         ^
      197 |         const podsDetailsPage = await podsPage.openPodDetails(SECRET_POD_NAME);
      198 |         await playExpect(podsDetailsPage.heading).toBeVisible();
      199 |         await playExpect.poll(async () => podsDetailsPage.getState(), { timeout: 50_000 }).toEqual(PodState.Running);

        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\kubernetes.spec.ts:196:9

Check failure on line 50 in ts

See this annotation in the file changed.

@github-actions github-actions / JUnit Test Report

ts.Verification of Podman extension @smoke › Podman is enabled and present

podman-extension-smoke.spec.ts:49:5 Podman is enabled and present
Raw output
[chromium] › tests\playwright\src\specs\podman-extension-smoke.spec.ts:49:5 › Verification of Podman extension @smoke › Podman is enabled and present 

    Error: Timed out 10000ms waiting for expect(locator).toContainText(expected)

    Locator: getByRole('region', { name: 'Header' }).getByLabel('Extension Status Label')
    Expected string: "ACTIVE"
    Received string: "ACTIVATING"
    Call log:
      - expect.toContainText with timeout 10000ms
      - waiting for getByRole('region', { name: 'Header' }).getByLabel('Extension Status Label')
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"
      -   locator resolved to <span aria-label="Extension Status Label" class="my-auto ml-1 font-bold text-[9px] text-green-500">ACTIVATING</span>
      -   unexpected value "ACTIVATING"


      86 |
      87 |   if (enabled) {
    > 88 |     await playExpect(extensionStatusLabel).toContainText(PODMAN_EXTENSION_STATUS_ACTIVE, { timeout: 10000 });
         |                                            ^
      89 |   } else {
      90 |     await playExpect(extensionStatusLabel).toContainText(PODMAN_EXTENSION_STATUS_DISABLED, { timeout: 10000 });
      91 |   }

        at verifyPodmanExtensionStatus (C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-extension-smoke.spec.ts:88:44)
        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-extension-smoke.spec.ts:50:7

Check failure on line 50 in ts

See this annotation in the file changed.

@github-actions github-actions / JUnit Test Report

ts.Podman machine onboarding from Dashboard › Create Podman machine from Dashboard

podman-machine-dashboard-onboarding.spec.ts:62:5 Create Podman machine from Dashboard
Raw output
[chromium] › tests\playwright\src\specs\podman-machine-dashboard-onboarding.spec.ts:62:5 › Podman machine onboarding from Dashboard › Create Podman machine from Dashboard 

    Error: Timed out 60000ms waiting for expect(locator).toBeEnabled()

    Locator: getByRole('region', { name: 'Podman Provider' }).getByRole('button', { name: 'Initialize and start ' })
    Expected: enabled
    Received: <element(s) not found>
    Call log:
      - expect.toBeEnabled with timeout 60000ms
      - waiting for getByRole('region', { name: 'Podman Provider' }).getByRole('button', { name: 'Initialize and start ' })


      65 |       console.log('Starting PD dashboard test');
      66 |       const dashboardPage = await navigationBar.openDashboard();
    > 67 |       await playExpect(dashboardPage.podmanInitilizeAndStartButton).toBeEnabled({ timeout: 60000 });
         |                                                                     ^
      68 |       await dashboardPage.podmanInitilizeAndStartButton.click();
      69 |       await playExpect(dashboardPage.podmanStatusLabel).toHaveText('RUNNING', { timeout: 300000 });
      70 |     });

        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-machine-dashboard-onboarding.spec.ts:67:69

    "afterAll" hook timeout of 120000ms exceeded.

      48 | });
      49 |
    > 50 | test.afterAll(async ({ runner }) => {
         |      ^
      51 |   test.setTimeout(120_000);
      52 |
      53 |   if (test.info().status === 'failed') {

        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-machine-dashboard-onboarding.spec.ts:50:6

Check failure on line 206 in ts

See this annotation in the file changed.

@github-actions github-actions / JUnit Test Report

ts.Podman Machine verification › Podman Machine creation and operations › Podman machine operations › Podman machine operations - STOP

podman-machine-onboarding.spec.ts:204:13 Podman machine operations - STOP
Raw output
[chromium] › tests\playwright\src\specs\podman-machine-onboarding.spec.ts:204:13 › Podman Machine verification › Podman Machine creation and operations › Podman machine operations › Podman machine operations - STOP 

    Error: Timed out 50000ms waiting for expect(locator).toHaveText(expected)

    Locator: getByLabel('Connection Status Label')
    Expected string: "RUNNING"
    Received string: "STARTING"
    Call log:
      - expect.toHaveText with timeout 50000ms
      - waiting for getByLabel('Connection Status Label')
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"


      204 |             test('Podman machine operations - STOP', async ({ page }) => {
      205 |               const podmanMachineDetails = new PodmanMachineDetails(page, PODMAN_MACHINE_NAME);
    > 206 |               await playExpect(podmanMachineDetails.podmanMachineStatus).toHaveText('RUNNING', { timeout: 50_000 });
          |                                                                          ^
      207 |               await playExpect(podmanMachineDetails.podmanMachineStopButton).toBeEnabled();
      208 |               await podmanMachineDetails.podmanMachineStopButton.click();
      209 |               await playExpect(podmanMachineDetails.podmanMachineStatus).toHaveText('OFF', { timeout: 50_000 });

        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-machine-onboarding.spec.ts:206:74

Check failure on line 133 in ts

See this annotation in the file changed.

@github-actions github-actions / JUnit Test Report

ts.Rootless Podman machine Verification › Create a rootless machine

podman-machine-rootless.spec.ts:100:5 Create a rootless machine
Raw output
[chromium] › tests\playwright\src\specs\podman-machine-rootless.spec.ts:100:5 › Rootless Podman machine Verification › Create a rootless machine 

    Error: Timed out 60000ms waiting for expect(locator).toHaveText(expected)

    Locator: getByLabel('Connection Status Label')
    Expected string: "RUNNING"
    Received string: "STARTING"
    Call log:
      - expect.toHaveText with timeout 60000ms
      - waiting for getByLabel('Connection Status Label')
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"


      131 |       await handleConfirmationDialog(page, 'Podman', true, 'OK');
      132 |
    > 133 |       await playExpect(podmanMachineDetails.podmanMachineStatus).toHaveText('RUNNING', { timeout: 60_000 });
          |                                                                  ^
      134 |
      135 |       await playExpect(podmanMachineDetails.podmanMachineStopButton).toBeEnabled();
      136 |       await podmanMachineDetails.podmanMachineStopButton.click();

        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-machine-rootless.spec.ts:133:66

Check failure on line 159 in ts

See this annotation in the file changed.

@github-actions github-actions / JUnit Test Report

ts.Podman machine switching validation › Switch to rootless podman machine

podman-machine-tests.spec.ts:147:5 Switch to rootless podman machine
Raw output
[chromium] › tests\playwright\src\specs\podman-machine-tests.spec.ts:147:5 › Podman machine switching validation  › Switch to rootless podman machine › Check rootless podman machine details › Start rootless podman machine 

    Test timeout of 60000ms exceeded.

    Error: expect(locator).toHaveText(expected)

    Locator: getByLabel('Connection Status Label')
    Expected string: "RUNNING"
    Received string: "STARTING"
    Call log:
      - expect.toHaveText with timeout 60000ms
      - waiting for getByLabel('Connection Status Label')
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"
      -   locator resolved to <span aria-label="Connection Status Label" class="my-auto ml-1 text-xs text-green-500">STARTING</span>
      -   unexpected value "STARTING"


      172 |           await handleConfirmationDialog(page, 'Podman', true, 'OK');
      173 |
    > 174 |           await playExpect(podmanMachineDetails.podmanMachineStatus).toHaveText('RUNNING', { timeout: 60_000 });
          |                                                                      ^
      175 |         });
      176 |       });
      177 |     });

        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-machine-tests.spec.ts:174:70
        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-machine-tests.spec.ts:166:9
        at C:\Users\rhqp\pd-e2e\podman-desktop\tests\playwright\src\specs\podman-machine-tests.spec.ts:159:7