-
Notifications
You must be signed in to change notification settings - Fork 0
Unknown_error_cannot_find_chrome_binary
Diego Ramos edited this page Mar 31, 2023
·
1 revision
Usually for windows users. To fix it add the setChromeBinaryPath to the browserOptions.json
{
"options": {
"addArguments": [
"--log-level=1",
"--no-sandbox",
"--disable-gpu",
"--disable-dev-shm-usage",
"--headless",
"--window-size=2200,1600"
],
"setChromeBinaryPath": "C:\\Users\\Usuario\\AppData\\Local\\Chromium\\Application\\chrome.exe"
}
}