21 lines
753 B
Python
21 lines
753 B
Python
"""account-manager 提供给业务 skill 的 RPA helper 库。
|
|
|
|
业务 skill 同进程 import 使用,不通过 CLI subprocess。
|
|
"""
|
|
from .auth_flows import ( # noqa: F401
|
|
AuthStrategyError,
|
|
LoginResult,
|
|
ensure_logged_in,
|
|
ensure_logged_in_api_token,
|
|
ensure_logged_in_client_certificate,
|
|
ensure_logged_in_device_bound,
|
|
ensure_logged_in_password_auto,
|
|
ensure_logged_in_password_plus_2fa,
|
|
ensure_logged_in_password_with_captcha,
|
|
ensure_logged_in_per_session_manual,
|
|
ensure_logged_in_qr_code_manual,
|
|
ensure_logged_in_sso_redirect,
|
|
)
|
|
from .browser import close_browser, launch_browser_with_profile # noqa: F401
|
|
from .human import human_click, human_scroll_to, human_select, human_type, pause # noqa: F401
|