We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
set executable_path in main() to '/usr/local/bin/chromedriver'
executable_path
main()
'/usr/local/bin/chromedriver'
figure out the path to the chromedriver binary (this assumes you installed chromedriver with homebrew)
CDP=/usr/local/Caskroom/chromedriver/<chromedriver_version_number>/chromedriver
then remove that goddamn annoying Apple quarantine flag on executables:
xattr -d com.apple.quarantine $CDP
In the future, I probably should refactor to have the chromedriver path just another line in the config file.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Notes On Getting this to work on macOS
set
executable_path
inmain()
to'/usr/local/bin/chromedriver'
figure out the path to the chromedriver binary (this assumes you installed chromedriver with homebrew)
CDP=/usr/local/Caskroom/chromedriver/<chromedriver_version_number>/chromedriver
then remove that goddamn annoying Apple quarantine flag on executables:
xattr -d com.apple.quarantine $CDP
In the future, I probably should refactor to have the chromedriver path just another line in the config file.
The text was updated successfully, but these errors were encountered: