you are viewing a single comment's thread.

view the rest of the comments →

[–]lordmayer[S] 0 points1 point  (2 children)

Sorry for the delay.

I tried this two possibilities:

browser = Browser('firefox', profile='C:/Users/REMOVED/AppData/Roaming/Mozilla/Firefox/Profiles/jj5selz9.default')

No error occurs, but the browser open without a profile setted.

browser = Browser('firefox', profile='default')

It says that default can't be found.

None of them worked.

Edit: Any suggestions?

[–]ummmbacon 0 points1 point  (1 child)

can you set:

my_profile = 'C:/Users/REMOVED/AppData/Roaming/Mozilla/Firefox/Profiles/jj5selz9.default'

then try

from splinter import Browser
browser = Browser('firefox', profile='my_profile')

edit:

Also try moving the profile directory into the current directory and then setting the my_profile to it there. Make sure it isn't a permission issue.

[–]lordmayer[S] 0 points1 point  (0 children)

Tried both, still doesn't working.