puppeteer/docs/api/puppeteer.locatoroptions.md
dependabot[bot] 93e9acc410
chore(deps-dev): Bump the dev-dependencies group with 3 updates (#12101)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
2024-03-20 15:03:14 +00:00

132 lines
1.3 KiB
Markdown

---
sidebar_label: LocatorOptions
---
# LocatorOptions interface
#### Signature:
```typescript
export interface LocatorOptions
```
## Properties
<table><thead><tr><th>
Property
</th><th>
Modifiers
</th><th>
Type
</th><th>
Description
</th><th>
Default
</th></tr></thead>
<tbody><tr><td>
ensureElementIsInTheViewport
</td><td>
</td><td>
boolean
</td><td>
Whether to scroll the element into viewport if not in the viewprot already.
</td><td>
`true`
</td></tr>
<tr><td>
timeout
</td><td>
</td><td>
number
</td><td>
Total timeout for the entire locator operation.
Pass `0` to disable timeout.
</td><td>
`Page.getDefaultTimeout()`
</td></tr>
<tr><td>
visibility
</td><td>
</td><td>
[VisibilityOption](./puppeteer.visibilityoption.md)
</td><td>
Whether to wait for the element to be `visible` or `hidden`. `null` to disable visibility checks.
</td><td>
</td></tr>
<tr><td>
waitForEnabled
</td><td>
</td><td>
boolean
</td><td>
Whether to wait for input elements to become enabled before the action. Applicable to `click` and `fill` actions.
</td><td>
`true`
</td></tr>
<tr><td>
waitForStableBoundingBox
</td><td>
</td><td>
boolean
</td><td>
Whether to wait for the element's bounding box to be same between two animation frames.
</td><td>
`true`
</td></tr>
</tbody></table>