Browser automation with Selenium

In the example below I will show you how to use Selenium for work with GoLogin. GoLogin technology allows you to use the Orbita browser, where you can use the unique browser snapshots through puppeteer. By setting up profiles on the gologin.com website you can emulate various devices, platforms, screen resolution, geolocation , timezone, availability of WebRTC , specify your proxies or proxies of the required country, etc. At the same time cookies and a common browser fingerprint will be saved in the profile so that the site does not require re-authorization and it can be changed with another command if you need to emulate a new browser.

Selenium requires a chromedriver. It’s latest version for working with GoLogin is located in the github.com/gologinapp/gologin repository in the selenium directory.

An example is given in Python (3.8)

The full parser code is presented below. I will analyze the main points separately.


import time
from sys import platform
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from gologin import GoLogin


gl = GoLogin({
 'token': 'yU0token',
 'profile_id': 'yU0Pr0f1leiD',
})

if platform == "linux" or platform == "linux2":
 chrome_driver_path = './chromedriver'
elif platform == "darwin":
 chrome_driver_path = './mac/chromedriver'
elif platform == "win32":
 chrome_driver_path = 'chromedriver.exe'

debugger_address = gl.start()
chrome_options = Options()
chrome_options.add_experimental_option("debuggerAddress", debugger_address)
driver = webdriver.Chrome(executable_path=chrome_driver_path, options=chrome_options)
driver.get("http://www.python.org")
assert "Python" in driver.title
driver.close()
time.sleep(3)
gl.stop()

										

The first step is to create an instance of the GoLogin class. In its parameters, you need to specify the access token and the profile that we will run. The Orbita executable file is searched by default in the user’s directory (can be overridden by the executablePath parameter):


const GL = new GoLogin({
 profile_id: 'yU0Pr0f1leiD',
 token: 'yU0token',
});
										

Then a command to launch remote browser is given and after receiving the link it is transmitted to Selenium:


debugger_address = gl.start()
chrome_options = Options()
chrome_options.add_experimental_option("debuggerAddress", debugger_address)
driver = webdriver.Chrome(executable_path=chrome_driver_path, options=chrome_options)
										

Next go to the python.org website and check that we got to the right place:


driver.get("http://www.python.org")
assert "Python" in driver.title

										

To complete the work close the driver and execute the profile stop

This way you can use Selenium for work with GoLogin.

Execute várias contas sem proibições e bloqueios

Leia também

como ganhar dinheiro online

Melhores trabalhos de operador de entrada de dados: Guia 2024

As pessoas que procuram os melhores empregos de operador de entrada de dados procuram normalmente uma forma de entrar no mundo do trabalho à distância. Se aspira a ser um freelancer com opções de trabalho flexíveis, a introdução de dados pode ajudá-lo a adquirir as competências e os conhecimentos necessários para alcançar esse estilo de vida.

Top-7 Tips How to Bypass IP Ban

Why avoid IP tracking?

web scraping with python

Web Scraping com Python: Um Guia Completo Passo a Passo + Código

Interessado em aprender web scraping com Python? Fizemos uma pesquisa extensiva – tudo no nosso guia completo com código!