Setting up Chromedriver For Integration Testing

Install Chromedriver via Homebrew

> which chromedriver
chromedriver not found
> brew install --cask chromedriver
> which chromedriver
<path>/chromedriver

Troubleshooting: Error: "chromedriver" cannot be opened because the developer cannot be verified. Unable to launch the chrome browser

> xattr -d com.apple.quarantine $(which chromedriver)

happy coding!

ย