mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-04 05:21:52 +09:00
이거 하다가 내 돈이 없어진다
This commit is contained in:
parent
a337c7f889
commit
96837ed01d
6 changed files with 101 additions and 40 deletions
|
|
@ -2,8 +2,11 @@ from browser_use.browser.context import BrowserContextConfig
|
|||
from pathlib import Path
|
||||
import os
|
||||
|
||||
def browser_config_kwargs(lang: str = "en_US") -> dict:
|
||||
browser_config_kwargs = {
|
||||
from typing import Any
|
||||
|
||||
def browser_config_kwargs(lang: str = "en_US") -> dict[str, Any]:
|
||||
browser_config_kwargs: dict[str, Any] = {
|
||||
"keep_alive": True,
|
||||
"browser_type": "chromium",
|
||||
"headless": False,
|
||||
"disable_security": True,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue