Using the code below:
try:
with SB(headed=True,uc=True,user_data_dir='path/to/Profile 1',browser='chrome') as sb:
sb.open('hocalhost:1111')
sb.sleep(2)
except:
print('Some error occur!!')
Expecting to see seleniumbase do the test on the profile i just speciffed. But it just create a new profile under the directory i passed. Info from chrome://version
Profile Path path/to/Profile 1/Default
and do the test there.
I've tried to use chromium_arg='--profile-directory='Profile 1'
and also not working.
What can i do to solve the problem? Thanks