I am developing a Python script with Selenium to make some automation on a website.
The script need to login first to have access to specific pages for my automation.
I would like to skip this login process by using cookie session like PhantomBuster does.
It exists here only solution to save a cookie after a first login and re-use this cookie to skip login process. This is not what I want.
I want my script load existing cookie from normal chrome or firefox browser in order to connect to website automatically without typing email/password.
Is it possible with Python or Javascript ?