> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kombai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Autonomous agent operations

> Kombai can autonomously navigate and interact with the browser to perform tasks.

export const Globe = props => {
  return <div style={{
    display: "inline",
    justifyContent: "center",
    alignItems: "center"
  }}>
      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18" fill="currentColor" stroke="currentColor" strokeWidth="0" style={{
    display: "inline"
  }} {...props}>
        <path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1Zm3.241 10.5v-.001c-.1-2.708-.992-4.904-1.89-6.452a13.919 13.919 0 0 0-1.304-1.88L12 3.11l-.047.059c-.354.425-.828 1.06-1.304 1.88-.898 1.547-1.79 3.743-1.89 6.451Zm-12.728 0h4.745c.1-3.037 1.1-5.49 2.093-7.204.39-.672.78-1.233 1.119-1.673C6.11 3.329 2.746 7 2.513 11.5Zm18.974 0C21.254 7 17.89 3.329 13.53 2.623c.339.44.729 1.001 1.119 1.673.993 1.714 1.993 4.167 2.093 7.204ZM8.787 13c.182 2.478 1.02 4.5 1.862 5.953.382.661.818 1.29 1.304 1.88l.047.057.047-.059c.354-.425.828-1.06 1.304-1.88.842-1.451 1.679-3.471 1.862-5.951Zm-1.504 0H2.552a9.505 9.505 0 0 0 7.918 8.377 15.773 15.773 0 0 1-1.119-1.673C8.413 18.085 7.47 15.807 7.283 13Zm9.434 0c-.186 2.807-1.13 5.085-2.068 6.704-.39.672-.78 1.233-1.118 1.673A9.506 9.506 0 0 0 21.447 13Z"></path>
      </svg>
    </div>;
};

Kombai can perform actions like navigating to different pages, clicking on buttons, and filling out forms to test your applications. To start using the browser autonomously, ask Kombai to perform a task in the Kombai Browser.

## Capabilities

<AccordionGroup>
  <Accordion title="Navigate" icon="compass">
    Kombai can test navigations inside your application with actions like visiting
    a page, switching between tabs, or navigating to different routes.
  </Accordion>

  <Accordion title="Click" icon="hand-pointer">
    Kombai can identify interactive elements in your interface and test
    clickabiltity of these elements. It can perform clicks, double clicks,
    right-clicks and hover actions on any visible element on the webpage like
    buttons, links, and form fields.
  </Accordion>

  <Accordion title="Type" icon="keyboard">
    Kombai can identify an input field and type text into it. It fills out forms,
    submits data, and interacts with text areas and search boxes.
  </Accordion>

  <Accordion title="Scroll" icon="scroll">
    Kombai can scroll lengthy pages to reveal more content, find specific
    elements, and explore large documents.
  </Accordion>

  <Accordion title="Screenshot" icon="camera">
    Kombai can take screenshots to understand page layouts, verify visual
    elements, and provide visual confirmation of its browser actions.
  </Accordion>

  <Accordion title="Console errors" icon="terminal">
    Kombai can monitor the browser console to troubleshoot problems and check page
    behavior by reading JavaScript errors, network warnings, and debugging output.
  </Accordion>

  <Accordion title="Network requests" icon="globe">
    Kombai can monitor the page's HTTP requests and responses, allowing it to
    track API calls, analyze payloads, check status codes, and diagnose network
    issues.
  </Accordion>

  <Accordion title="Performance metrics" icon="gauge">
    Kombai can track the page's performance metrics, including load times,
    resource usage, and user experience indicators, to help identify and optimize
    performance bottlenecks.
  </Accordion>
</AccordionGroup>
