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

# Get Full Elements Positions

> Retrieve element positions along with browser window, screen, and document resolution details

The Get Full Elements Positions command (Command Type: 25) retrieves positions of DOM elements identified by a CSS selector, along with resolution details of the browser window, screen, and document.

## Command Type

**Command Type ID:** 25

## Parameters

| Parameter    | Type    | Description                                  | Required |
| ------------ | ------- | -------------------------------------------- | -------- |
| **selector** | string  | CSS selector for the target elements         | Yes      |
| **timeout**  | number  | Timeout in milliseconds                      | Yes      |
| **filters**  | Filters | Optional filters to refine element selection | No       |

### Filters Object

| Field                | Type            | Description                                              |
| -------------------- | --------------- | -------------------------------------------------------- |
| **className**        | string          | Filter by class name                                     |
| **includeInnerText** | Array of string | Include elements whose inner text contains these strings |
| **excludeInnerText** | Array of string | Exclude elements whose inner text contains these strings |

## Usage Examples

### Get Full Positions with Viewport Info

```json theme={null}
{
  "command": "get-full-elements-positions",
  "params": {
    "selector": ".clickable-item",
    "timeout": 10000
  }
}
```

## Common Use Cases

* **Coordinate Calculations**: Use viewport and screen dimensions together with element coordinates for precise click targeting
* **Multi-Monitor Scenarios**: Account for screen resolution differences

## Related Commands

* [Get Elements Positions](/stream/commands/browser/get-elements-positions) - Positions without viewport/document info
* [Get Page Rectangle](/stream/commands/browser/get-page-rectangle) - Overall page dimensions
