-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
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
ValueError: Browser not found: /usr/bin/google-chrome #29
Comments
It looks like the defaults just have Linux in mind, but you can override the executable location: async def main():
# Start the browser with no additional webdriver configuration!
options = Options()
options.binary_location = "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
async with Chrome(options=options) as browser:
... |
CaioWzy
added a commit
to CaioWzy/pydoll
that referenced
this issue
Mar 9, 2025
we have an open PR from @CaioWzy to fix this problem |
thalissonvs
added a commit
that referenced
this issue
Mar 9, 2025
fix: resolve issue #29 where browser path was not found on macOS
@WittmannF Can you check if it's working now? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To my understanding, it doesn't require a chrome web-browser. Or am I missing something? Here's the error I got:
Running the following test on MacOS:
The text was updated successfully, but these errors were encountered: