mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1847704789
This PR removes the deprecated query selector API from the `puppeteer` instance. Direct imports of the query selector API have also been deprecated and users are now expected to use the static methods defined on `Puppeteer`.
20 lines
263 B
Markdown
20 lines
263 B
Markdown
---
|
|
sidebar_label: Puppeteer.clearCustomQueryHandlers
|
|
---
|
|
|
|
# Puppeteer.clearCustomQueryHandlers() method
|
|
|
|
Unregisters all custom query handlers.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
class Puppeteer {
|
|
static clearCustomQueryHandlers(): void;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
void
|