Files
browser-use/browser_use/actor/__init__.py
2025-10-15 13:48:08 -07:00

12 lines
261 B
Python

"""CDP-Use High-Level Library
A Playwright-like library built on top of CDP (Chrome DevTools Protocol).
"""
from .element import Element
from .mouse import Mouse
from .page import Page
from .utils import Utils
__all__ = ['Page', 'Element', 'Mouse', 'Utils']