Installs the chromedriver binary for Selenium/Playwright automation. Version 149.0.7818.0.0 corresponds to ChromeDriver matching Chrome 149. Released irregularly alongside ChromeDriver updates.
pip install chromedriver-binaryVerified import paths — ran on the pinned version, not inferred.
Import chromedriver_binary to automatically add chromedriver to PATH, then instantiate Selenium Chrome driver.
Replace `chromedriver_path` with `chromedriver_filename` or rely on the side-effect import.
Use platform-specific Docker base images or install chromedriver via system package manager in CI.
Use `import chromedriver_binary` or `from chromedriver_binary import chromedriver_filename`.
Run `pip install chromedriver-binary` — note the hyphen in the package name.
Replace with `chromedriver_filename` or simply `import chromedriver_binary` without referencing the attribute.
Ensure `import chromedriver_binary` is executed before any WebDriver instantiation. It performs PATH modification on import.
No dependency data recorded yet.