Selenium 的浏览器自动化

在下面的示例中,我将向您展示如何使用 Selenium 与 GoLogin 一起工作。GoLogin 技术允许您使用 Orbita 浏览器,您可以在其中通过 puppeteer 使用独特的浏览器快照。通过在其上设置配置文件 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 您可以模拟各种设备、平台、屏幕分辨率、地理位置、时区、WebRTC 的可用性、指定您的代理或所需国家/地区的代理等的网站。同时将保存 cookie 和通用浏览器指纹在配置文件中,以便站点不需要重新授权,如果您需要模拟新浏览器,可以使用另一个命令更改它。 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 需要 chromedriver。它的最新版本与 GoLogin 一起使用位于 selenium 目录中的 github.com/gologinapp/gologin 存储库中。

Python (3.8) 给出了一个例子

完整的解析器代码如下,我会分别分析要点。


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()

										

第一步是创建一个GoLogin类的实例。在它的参数中,你需要指定访问令牌和我们将运行的配置文件。默认在用户目录中搜索Orbita可执行文件(可以被executablePath参数覆盖):


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

然后给出启动远程浏览器的命令,并在收到链接后将其传输到 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)
										

接下来访问 python.org 网站并检查我们是否到达了正确的位置:


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

										

完成工作关闭驱动程序并执行配置文件停止

这样你就可以在 GoLogin 中使用 Selenium。

运行多个账户,不受封禁和阻止

另请阅读

Hidemyacc 浏览器替代品:Honest 2024 评论

就 2024 年的价格而言,Hidemyacc 似乎是一个合适的工具。 然而,它在引擎盖下的表现却不尽如人意:请阅读评论,了解事实和数据。

最佳 vpn 服务

2024 年最佳 VPN 服务工具:12 强 + 替代方案

根据您的需求选择最佳 VPN 服务:无论是快速的游戏速度,还是经济实惠的绕过封锁。

AEZAKMI Browser

AEZAKMI Browser | AntBrowser | Accovod Browser 浏览器大战

今天,我们将介绍 3 款俄罗斯工具:AEZAKMI Browser、AntBrowser 和 Accovod Browser。 它们使用安全吗,值得投资吗?