mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
12 lines
261 B
Python
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']
|