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`.
26 lines
428 B
Markdown
26 lines
428 B
Markdown
---
|
|
sidebar_label: Puppeteer.unregisterCustomQueryHandler
|
|
---
|
|
|
|
# Puppeteer.unregisterCustomQueryHandler() method
|
|
|
|
Unregisters a custom query handler for a given name.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
class Puppeteer {
|
|
static unregisterCustomQueryHandler(name: string): void;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------ | ----------- |
|
|
| name | string | |
|
|
|
|
**Returns:**
|
|
|
|
void
|