Selenium error

WebDriverException: unknown error: cannot find Chrome binary

Selenium's ChromeDriver can't locate an actual Chrome (or Chromium) executable on this machine.

Why this happens

How to fix it

  1. Install Chrome (or Chromium) on the runner, or use a CI image that already bundles it
  2. If it's in a custom location, set the binary path explicitly: `ChromeOptions options = new ChromeOptions(); options.setBinary("/path/to/chrome");`