https://github.com/k8scat/browser-auto
https://github.com/k8scat/browser-auto
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/k8scat/browser-auto
- Owner: k8scat
- Created: 2025-02-15T07:52:48.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-06-10T11:04:09.000Z (4 months ago)
- Last Synced: 2025-07-04T18:18:06.715Z (3 months ago)
- Language: Python
- Size: 205 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# browser-auto
> 背景:使用浏览器的不同 Profile 登陆不同的账号(这里的账号不限于 Google 账号),需要对多个账号进行批量操作,例如:批量检测多个 GCP 账号的剩余免费配额
浏览器多账号批量自动化执行脚本
**优势:使用多个 Profile 可以避免切换登录账号的问题**
## Chrome Profile 说明
一个 Google 账号对应一个 Chrome Profile
Profile 名称可以通过 `chrome://version` 进行获取

## 关键方法
[core.py](./core.py) 文件中 `run` 方法
```python
def run(profile, fn):
"""
profile: 指定 profile 名称
fn: 执行函数,函数参数为 Chrome WebDriver 对象
"""...
```## 简单示例
批量打印指定 Google 账号的邮箱
```python
import loggingfrom selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as ECfrom chrome_auto import run
def get_profile_email(driver):
driver.get("https://myaccount.google.com/email")el = WebDriverWait(driver, 100).until(
EC.presence_of_element_located((By.XPATH, '/html/body/c-wiz/div/div[2]/div[2]/c-wiz/div/div[4]/article/ul/li/div/div/div'))
)
return el.textdef main():
profiles = ["Default"]for profile in profiles:
def print_profile_email(driver):
email = get_profile_email(driver)
logging.info(f"Profile - {profile}, email: {email}")run(profile, print_profile_email)
if __name__ == "__main__":
main()```
## 运行
```bash
python3.11 -m virtualenv .venv
source .venv/bin/activate
pip install -r requirements.txt
python3.11 profile_email.py
```## 下载 ChromeDriver
- https://sites.google.com/chromium.org/driver/downloads
- https://googlechromelabs.github.io/chrome-for-testing/## 系统要求
- 支持的操作系统:Windows、MacOS
- Google Chrome 浏览器
- Python 3.6 或更高版本
- 确保 Chrome 安装在标准位置:
- Windows: `C:\Program Files\Google\Chrome\Application\chrome.exe` 或
`C:\Program Files (x86)\Google\Chrome\Application\chrome.exe`
- MacOS: `/Applications/Google Chrome.app/`## 特性
- 支持多 Profile 管理
- 自动禁用所有插件和扩展,提高稳定性
- 支持 Windows 和 MacOS 系统