mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-04 08:21:52 +09:00
지금 일단 업데이트만 해뒀어요
This commit is contained in:
parent
09a91f9c7c
commit
e1ae2dc94f
9 changed files with 713 additions and 173 deletions
|
|
@ -12,10 +12,15 @@ def browser_config_kwargs(lang: str = "en_US") -> dict[str, Any]:
|
|||
"disable_security": True,
|
||||
"extra_browser_args": [
|
||||
"--disable-web-security",
|
||||
"--disable-features=VizDisplayCompositor",
|
||||
"--disable-site-isolation-trials",
|
||||
"--disable-features=IsolateOrigins,site-per-process",
|
||||
"--disable-popup-blocking",
|
||||
"--disable-dev-shm-usage",
|
||||
f"--lang={lang}",
|
||||
"--ignore-certificate-errors"
|
||||
"--ignore-certificate-errors",
|
||||
"--ignore-ssl-errors",
|
||||
"--allow-running-insecure-content"
|
||||
],
|
||||
}
|
||||
|
||||
|
|
@ -26,4 +31,5 @@ def browser_config_kwargs(lang: str = "en_US") -> dict[str, Any]:
|
|||
f"--proxy-server=http={proxy_host}:{proxy_port};https={proxy_host}:{proxy_port}"
|
||||
)
|
||||
|
||||
return browser_config_kwargs
|
||||
return browser_config_kwargs
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue