diff --git a/.github/workflows/playwright_pre_webkit.yml b/.github/workflows/playwright_pre_webkit.yml index d67b20bb..477a4320 100644 --- a/.github/workflows/playwright_pre_webkit.yml +++ b/.github/workflows/playwright_pre_webkit.yml @@ -24,7 +24,7 @@ jobs: run: npm ci - name: Install Playwright - run: npx playwright install --with-deps + run: npx playwright install --force --with-deps - name: Run Playwright tests env: diff --git a/tests/view-mode.spec.js b/tests/view-mode.spec.js index afe96565..1fa8e7f2 100644 --- a/tests/view-mode.spec.js +++ b/tests/view-mode.spec.js @@ -178,7 +178,9 @@ mainTest.describe(() => { mainTest(qase([689], 'CO-368 Interactions dropdown'), async ({ page }) => { const userAgent = await page.evaluate(() => navigator.userAgent); + const playwrightVersion = require('@playwright/test/package.json').version; + console.log('Playwright version:', playwrightVersion); console.log('User-Agent:', userAgent); await mainPage.createDefaultBoardByCoordinates(300, 300); await mainPage.createDefaultBoardByCoordinates(500, 500, true);