-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Getting chromium as undefined with playwright-core #2905
Comments
Hi, I agree. Especially when you want to use other Chromium related browsers like Microsoft Edge, its useful to only install the wrapper instead of installing e.g. |
playwright-core is an implementation detail of playwright. If you'd like Playwright that does not download the browsers, use skip environment variable as described in https://playwright.dev/#version=v1.2.0&path=docs%2Finstallation.md&q=skip-browser-downloads. If your use case makes you depend on playwright-core in NPM, we would love to learn why! |
My use case is for WSL, const windowsWSLWorkaround: LaunchOptions = {
executablePath: '/c/Program Files (x86)/Google/Chrome/Application/chrome.exe',
userDataDir: '/tmp/puppeteer',
headless: false
};
`` |
Same options would work with |
We are developing (and running) a "desktop application" (think of something akin to the carlo architecture) using Controlling whether In general, the reason why In our current implementation, we have solved the issue of how to signify that we don't want to use the bundled browser by specifying |
This is fixed now. |
Context:
Code Snippet
Describe the bug
Getting chromium as undefined
The text was updated successfully, but these errors were encountered: