17 lines
262 B
Markdown
17 lines
262 B
Markdown
|
---
|
||
|
sidebar_label: ActionCondition
|
||
|
---
|
||
|
|
||
|
# ActionCondition type
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
export type ActionCondition = (
|
||
|
element: ElementHandle,
|
||
|
signal: AbortSignal
|
||
|
) => Promise<void>;
|
||
|
```
|
||
|
|
||
|
**References:** [ElementHandle](./puppeteer.elementhandle.md)
|