Automated Anti-Browser Profile using Python/Selenium

FliiPsY

Newbie
Joined
Mar 31, 2024
Messages
3
Reaction score
0
Hello everyone,

I'm working on a Python script aimed at automating a series of actions across my GoLogin profiles. The workflow involves opening each profile, performing specific browser actions via Selenium, refreshing my 4G mobile proxy connection, and then moving on to the next profile. This part is quite easy thanks to the GoLogin's API.

The complexity arises with the browser GoLogin uses, named Orbita, which operates differently compared to standard browsers like Chrome or Firefox. Orbita provides a WebSocket URL for connections, and despite setting up Selenium with the appropriate ChromeDriver version that matches Orbita's Chrome base, establishing a successful connection has proven to be very tricky.

Has anyone face a similar situation with specific browser ? Could there be alternative for a better automation ? Is WebSocket URL a dead end on selenium ?

Cheers in advance for any insights !
 
i don't know how it works for selenium, but i use puppeteer and i got a basic script up and running in 1 day (i used gologin api too) using chatgpt. i honestly underestimated how good that thing was i just gave it a piece of gologin api found on postman, told it what i wanted to do, and it gave me a working piece of code to start with.
 
Try using pyppeteer instead of Selenium. I'm new to this, but a friend uses it and Gologin works great. As far as I know, this browser is the most hassle-free in terms of automation
 
I think Puppeteer is better than Selenium for that task.
 
Back
Top