Replies: 1 comment 1 reply
-
|
Hello @DasRytis, yes, it is possible. You just need to use the "--user-data-dir" flag in ChromiumOptions and specify a path. For instance: from pydoll.browser import Chrome
from pydoll.browser.options import ChromiumOptions
options = ChromiumOptions()
options.add_argument("--user-data-dir=/your/path")
browser = Chrome(options=options) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to use existing chrome profile? Or create a specific one for Pydoll? Currently every time i start the bot i opens a new chrome session/profile that's is completely empty. I want to be to maintain extensions and settings by opening existing profile. Is that possible?
Beta Was this translation helpful? Give feedback.
All reactions