> For the complete documentation index, see [llms.txt](https://gaffa.dev/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gaffa.dev/docs/features.md).

# Features

- [Browser Requests](https://gaffa.dev/docs/features/browser-requests.md): Making web automation requests has never been so simple.
- [Parameters](https://gaffa.dev/docs/features/browser-requests/parameters.md)
- [Settings](https://gaffa.dev/docs/features/browser-requests/settings.md)
- [Actions](https://gaffa.dev/docs/features/browser-requests/actions.md)
- [Block DOM Removals](https://gaffa.dev/docs/features/browser-requests/actions/block-dom-removals.md)
- [Capture Cookies](https://gaffa.dev/docs/features/browser-requests/actions/capture-cookies.md)
- [Capture DOM](https://gaffa.dev/docs/features/browser-requests/actions/capture-dom.md)
- [Capture Screenshot](https://gaffa.dev/docs/features/browser-requests/actions/capture-screenshot.md)
- [Capture Element](https://gaffa.dev/docs/features/browser-requests/actions/capture-element.md)
- [Capture Snapshot](https://gaffa.dev/docs/features/browser-requests/actions/capture-snapshot.md)
- [Click](https://gaffa.dev/docs/features/browser-requests/actions/click.md)
- [Download File](https://gaffa.dev/docs/features/browser-requests/actions/download-file.md)
- [Generate Markdown](https://gaffa.dev/docs/features/browser-requests/actions/generate-markdown.md)
- [Generate Simplified DOM](https://gaffa.dev/docs/features/browser-requests/actions/generate-simplified-dom.md)
- [Print](https://gaffa.dev/docs/features/browser-requests/actions/print.md)
- [Parse JSON](https://gaffa.dev/docs/features/browser-requests/actions/parse-json.md)
- [Parse Table](https://gaffa.dev/docs/features/browser-requests/actions/parse-table.md)
- [Scroll](https://gaffa.dev/docs/features/browser-requests/actions/scroll.md)
- [Type](https://gaffa.dev/docs/features/browser-requests/actions/type.md)
- [Wait](https://gaffa.dev/docs/features/browser-requests/actions/wait.md)
- [API Playground Examples](https://gaffa.dev/docs/features/browser-requests/api-playground-examples.md)
- [Export Web Page to PDF](https://gaffa.dev/docs/features/browser-requests/api-playground-examples/export-web-page-to-pdf.md): An example request that uses Gaffa to convert an HTML page to a PDF. There are lots of HMTL to PDF API's but Gaffa handles it easily, as well as doing much more.
- [Convert Web Page to Markdown](https://gaffa.dev/docs/features/browser-requests/api-playground-examples/convert-web-page-to-markdown.md): An example request that uses Gaffa to convert a web page page to markdown. This could be used to export web page reports or to print the content of a page in a readable format.
- [Infinitely Scroll an E-commerce Site](https://gaffa.dev/docs/features/browser-requests/api-playground-examples/infinitely-scroll-an-e-commerce-site.md): An example request that uses Gaffa to infinitely scroll down a simulated ecommerce site whilst recording the interaction.
- [Capture a Full-Height Screenshot](https://gaffa.dev/docs/features/browser-requests/api-playground-examples/capture-a-full-height-screenshot.md): An example request that uses Gaffa to dismiss a modal, scroll to the bottom of a page and then capture a full height screenshot.
- [Automated Form Filling](https://gaffa.dev/docs/features/browser-requests/api-playground-examples/automated-form-filling.md): An example request that uses Gaffa to automate the completion of a form and waits for a success modal to appear.
- [Parse PDF to Structured JSON](https://gaffa.dev/docs/features/browser-requests/api-playground-examples/parse-pdf-to-structured-json.md): An example request that uses Gaffa to extract structured data from an online PDF.
- [Parse HTML Form to Structured JSON](https://gaffa.dev/docs/features/browser-requests/api-playground-examples/parse-html-form-to-structured-json.md): An example request that uses Gaffa to analyze a web form and extract all input fields, their labels, types, and properties into structured JSON.
- [Parse an HTML Table to JSON](https://gaffa.dev/docs/features/browser-requests/api-playground-examples/parse-an-html-table-to-json.md): An example request that uses Gaffa to extract structured data (JSON) from a table on a webpage
- [Mapping Requests](https://gaffa.dev/docs/features/mapping-requests.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://gaffa.dev/docs/features.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
