Reputation: 1
I am using
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?
Upvotes: 0
Views: 1168