-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
48 lines (44 loc) · 1010 Bytes
/
__init__.py
File metadata and controls
48 lines (44 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
Sentience Python SDK - AI Agent Browser Automation
"""
from .browser import SentienceBrowser
from .models import Snapshot, Element, BBox, Viewport, ActionResult, WaitResult
from .snapshot import snapshot
from .query import query, find
from .actions import click, type_text, press, click_rect
from .wait import wait_for
from .expect import expect
from .inspector import Inspector, inspect
from .recorder import Recorder, Trace, TraceStep, record
from .generator import ScriptGenerator, generate
from .read import read
from .screenshot import screenshot
__version__ = "0.1.0"
__all__ = [
"SentienceBrowser",
"Snapshot",
"Element",
"BBox",
"Viewport",
"ActionResult",
"WaitResult",
"snapshot",
"query",
"find",
"click",
"type_text",
"press",
"click_rect",
"wait_for",
"expect",
"Inspector",
"inspect",
"Recorder",
"Trace",
"TraceStep",
"record",
"ScriptGenerator",
"generate",
"read",
"screenshot",
]