puppeteer/docs/api/puppeteer.waitforselectoroptions.hidden.md

16 lines
328 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: WaitForSelectorOptions.hidden
---
# WaitForSelectorOptions.hidden property
Wait for the selected element to not be found in the DOM or to be hidden, i.e. have `display: none` or `visibility: hidden` CSS properties.
2022-07-05 13:41:43 +00:00
**Signature:**
```typescript
interface WaitForSelectorOptions {
hidden?: boolean;
}
```