2020-06-04 14:56:45 +00:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home ](./index.md ) > [puppeteer ](./puppeteer.md ) > [Frame ](./puppeteer.frame.md ) > [tap ](./puppeteer.frame.tap.md )
## Frame.tap() method
2020-07-09 13:22:58 +00:00
This method fetches an element with `selector` <!-- --> , scrolls it into view if needed, and then uses [Page.touchscreen ](./puppeteer.page.touchscreen.md ) to tap in the center of the element.
2020-06-04 14:56:45 +00:00
< b > Signature:< / b >
```typescript
tap(selector: string): Promise< void > ;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2020-07-09 13:22:58 +00:00
| selector | string | the selector to tap. |
2020-06-04 14:56:45 +00:00
< b > Returns:< / b >
Promise< void>
2020-07-09 13:22:58 +00:00
a promise that resolves when the element has been tapped.
## Remarks
If there's no element matching `selector` <!-- --> , the method throws an error.