Playwright nightly (firefox) headed mode, browser is not responding

168 Views Asked by At

I am using

  • playwright version 1.41.2
  • node v21.6.1
  • win11 Pro build 22631 x64
  • Lenovo PC
  • JavaScript and TypeScript.

I have an issue when running a test in headed mode with the Firefox (nightly) browser (firefox-1438). Browsers were installed over npm install @playwright. Every browser works fine (chromium, webkit, edge) except nightly in headed mode. In headless mode nightly works fine. Well, I am not receiving any error and testing is executed without a defect.

I am running a simple test delivered by the Playwright team. Script:

import { test, expect } from '@playwright/test';

test('has title', async ({ page }) => {
  await page.goto('https://playwright.dev/');
  await expect(page).toHaveTitle(/Playwright/);
});

What I did: uninstall node, uninstall pw and reinstall. Manually deleted browsers from ms-playwright folder and reinstalled them. Delete browser over command: npx playwright uninstall –all and reinstall.

Any ideas?

0

There are 0 best solutions below