2023-03-21 09:21:10 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Page.waitForDevicePrompt
|
|
|
|
---
|
|
|
|
|
|
|
|
# Page.waitForDevicePrompt() method
|
|
|
|
|
|
|
|
This method is typically coupled with an action that triggers a device request from an api such as WebBluetooth.
|
|
|
|
|
|
|
|
:::caution
|
|
|
|
|
|
|
|
This must be called before the device request is made. It will not return a currently active device prompt.
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Page {
|
|
|
|
waitForDevicePrompt(
|
|
|
|
options?: WaitTimeoutOptions
|
|
|
|
): Promise<DeviceRequestPrompt>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------------------------------------------------------- | ------------ |
|
|
|
|
| options | [WaitTimeoutOptions](./puppeteer.waittimeoutoptions.md) | _(Optional)_ |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2023-03-27 11:16:51 +00:00
|
|
|
Promise<[DeviceRequestPrompt](./puppeteer.devicerequestprompt.md)>
|
2023-03-21 09:21:10 +00:00
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```ts
|
|
|
|
const [devicePrompt] = Promise.all([
|
|
|
|
page.waitForDevicePrompt(),
|
|
|
|
page.click('#connect-bluetooth'),
|
|
|
|
]);
|
|
|
|
await devicePrompt.select(
|
|
|
|
await devicePrompt.waitForDevice(({name}) => name.includes('My Device'))
|
|
|
|
);
|
|
|
|
```
|