Open ironicnet opened 1 year ago
I think you can specify the executablePath inside engineOptions. This is what I have:
"engineOptions": {
"executablePath": ".\\node_modules\\chromium-binaries\\src\\binaries\\chrome-win\\chrome.exe",
"args": ["--ignore-certificate-errors", "--no-sandbox"]
}
This was happening for me as well and I used this command to fix it:
npx playwright install chromium
or npx playwright install firefox
- then backstop test
worked
Hello team, currently we are running backstopjs with playwright.
We are running into a situation where the backstopjs is looking for some browsers binaries with a specific version. Meanwhile the playwright install is installing a different set of binaries.
Is there a way to sync them? This is almost how it looks in the pipeline:
$ npx playwright install --with-deps
$ backstop test --config backstop.config.js
Any idea how we can tell Playwright and BackstopJs which versions to use?