playwright/tests/bidi
Yury Semikhatsky fbeba6619a
devops(bidi): increase global timeout to 60m (#32775)
Firefox tests are running out of time on CI.
2024-09-23 17:55:30 -07:00
..
expectations chore(bidi): run firefox tests against nightly build (#32737) 2024-09-20 12:57:10 -07:00
expectationReporter.ts chore: do not store project name in expectations (#32575) 2024-09-11 15:15:10 -07:00
expectationUtil.ts chore: do not store project name in expectations (#32575) 2024-09-11 15:15:10 -07:00
playwright.config.ts devops(bidi): increase global timeout to 60m (#32775) 2024-09-23 17:55:30 -07:00
README.md chore: run bidi firefox tests on ci (#32527) 2024-09-09 17:22:19 -07:00

Running Bidi tests

To run Playwright tests with Bidi:

git clone https://github.com/microsoft/playwright.git
cd playwright
npm run build # call `npm run watch` for watch mode
npx playwright install chromium
npm run biditest -- --project='bidi-firefox-beta-*'

To install beta channel of Firefox, run the following command in the project root:

npx -y @puppeteer/browsers install firefox@beta

You can also pass custom binary path via BIDIPATH:

BIDIPATH='/Users/myself/Downloads/chrome-mac-arm64/Google Chrome for Testing.app/Contents/MacOS/Google Chrome for Testing'