Skip to content

Commit

Permalink
Add quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Jul 10, 2023
1 parent 4b6cd48 commit f59c9db
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,23 @@ from agentbrowser import (
)
```

## Quickstart

```python
from agentbrowser import (
navigate_to,
get_body_text,
)

# Navigate to a URL
page = navigate_to("https://google.com")

# Get the text from the page
text = get_body_text(page)

print(text)
```

# Basic:

# Create a new page
Expand Down

0 comments on commit f59c9db

Please sign in to comment.