Skip to content

Commit db8ef0c

Browse files
chore: remove UI automation example from README.md
1 parent cc7785c commit db8ef0c

1 file changed

Lines changed: 0 additions & 21 deletions

File tree

README.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,6 @@ Whether you're automating desktop apps, testing mobile applications, or building
3030

3131
## Quick Examples
3232

33-
### Programmatic UI Automation
34-
35-
Control your devices with simple, vision-based commands:
36-
37-
```python
38-
from askui import ComputerAgent
39-
40-
with ComputerAgent() as agent:
41-
# Click on a button by its text
42-
agent.click("Submit")
43-
44-
# Type into the currently focused field
45-
agent.type("hello@example.com")
46-
47-
# Click at specific coordinates
48-
agent.click(x=100, y=200)
49-
50-
# Find and click an element by image
51-
agent.click(image="./assets/login-button.png")
52-
```
53-
5433
### Agentic UI Automation
5534

5635
Run the script with `python <file path>`, e.g `python test.py` to see if it works.

0 commit comments

Comments
 (0)