> ## Documentation Index
> Fetch the complete documentation index at: https://agent.palank.co.kr/llms.txt
> Use this file to discover all available pages before exploring further.

# Browser Control

> Control Chrome tabs with AI-powered commands

## Overview

PalanK provides comprehensive browser automation through natural language commands. The AI understands context and executes complex multi-step operations automatically.

## Navigation

### Page Navigation

```text theme={null}
"Go to amazon.com"
"Navigate to https://github.com/PALAN-K"
"Open google.com in a new tab"
"Go back to the previous page"
"Refresh this page"
```

### Tab Management

```text theme={null}
"Open a new tab"
"Close this tab"
"Switch to the second tab"
```

## Interactions

### Clicking Elements

```text theme={null}
"Click the login button"
"Click on the search icon"
"Click the first product in the list"
"Double-click on the image"
```

### Typing Text

```text theme={null}
"Type 'hello world' in the search box"
"Fill the email field with test@example.com"
"Enter my username in the login form"
"Clear the input field and type 'new text'"
```

### Form Handling

```text theme={null}
"Fill out the contact form with my information"
"Select 'United States' from the country dropdown"
"Check the 'Remember me' checkbox"
"Submit the form"
```

## Page Analysis

### Reading Content

```text theme={null}
"What's the title of this page?"
"Read the main article content"
"List all the links on this page"
"Find the price of this product"
```

### Screenshots

```text theme={null}
"Take a screenshot"
"Capture the visible area"
"Screenshot the entire page"
```

### Element Finding

```text theme={null}
"Find all buttons on this page"
"Locate the login form"
"Where is the search bar?"
```

## Scrolling

```text theme={null}
"Scroll down"
"Scroll to the bottom of the page"
"Scroll up a little"
"Scroll to the comments section"
```

## Advanced Operations

### Waiting

```text theme={null}
"Wait for the page to load"
"Wait until the spinner disappears"
"Wait 3 seconds"
```

### Conditional Actions

```text theme={null}
"If there's a cookie banner, close it"
"Click 'Load more' until all items are visible"
"If logged in, go to dashboard; otherwise login first"
```

### Data Extraction

```text theme={null}
"Extract all product names and prices"
"Get the table data as CSV"
"Copy all email addresses on this page"
```

## Best Practices

<Tip>
  Be specific about which element you want to interact with. Instead of "click the button", say "click the blue Submit button at the bottom".
</Tip>

<Warning>
  The AI sees the page as a user would. If an element is hidden or requires scrolling, mention that in your command.
</Warning>

## Limitations

* Cannot interact with browser chrome (address bar, bookmarks)
* Cannot access cross-origin iframes with different security policies
* Some heavily protected sites may block automation
* File upload dialogs require manual interaction
