-
Notifications
You must be signed in to change notification settings - Fork 12
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
How to disable popup "Save password"? #13
Comments
It looks like you can disable the Chrome password manager either by changing the setting manually in your user preferences (use a persistent user data directory with zendriver to save settings across restarts) Or by configuring the enterprise Chrome settings as described here. Really though I would recommend not worrying about this. The popup has no effect on the browser automation. |
Maybe in the future though we could apply some of these settings with zendriver automatically? I'll leave the issue open for now in case someone is interested in adding this. |
@stephanlensky is there a way to set chrome settings programmatically via zendriver? I'm trying to block image requests (working with some pricey proxies haha) |
@slimshreydy lets keep the discussion here on-topic. I see you got some help in another issue here. Beyond that I am not sure there is a programmatic way to apply Chrome settings. If you're interested in that though, please feel free to open an issue. |
subj
browser_args = [
"--hide-crash-restore-bubble",
"--disable-notifications",
"--disable-save-password-bubble",
"--disable-password-manager",
"--no-service-autorun"
These options have no effect
Python 3.12
zendriver 0.1.1
Kubuntu 24.04
The text was updated successfully, but these errors were encountered: