Skip to content

Unknown_error_cannot_find_chrome_binary

Diego Ramos edited this page Mar 31, 2023 · 1 revision

WebDriverError: unknown error: cannot find Chrome binary

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"
  }
}

Clone this wiki locally