-
Hi Michael, I'm encountering an issue when trying to open Chrome with a specific user profile using Selenium Base. Despite following the usual procedures, I can't seem to get it to work. Could you provide guidance on how to correctly launch Chrome with a specified profile using Selenium Base? I'm not sure if it's an error in my code or a general mistake on my part. Thanks for your help! `from seleniumbase import Driver driver = Driver(user_data_dir=perfil) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Duplicate of #2432 (comment) / #2331 (comment) If you need multiple profiles, set a different If you're setting the |
Beta Was this translation helpful? Give feedback.
Duplicate of #2432 (comment) / #2331 (comment)
If you need multiple profiles, set a different
user_data_dir
for each one that you want. Only theDefault
profile is supported.If you're setting the
user_data_dir
while using UC Mode, then make sure you read #2118 (comment) first. (Don't mix a regularuser_data_dir
with one that is used by UC Mode Chrome, as the two formats are not compatible.)