# doubleTapOn

Taps twice on an element using a [selector](https://docs.moropo.com/creating-tests/test-step-selectors).

## Examples

Double-tap on text

```yaml
- doubleTapOn:
    text: "some text"
```

Double tap on an element with ID

```yaml
- doubleTapOn:
    id: "some-id"
```

## Options

Double tap on a point in the top left corner of the screen

```yaml
- doubleTapOn:
    point: 10%,10%
```

Double tap on a point in the centre of the screen

```yaml
- doubleTapOn:
    point: 50%,50%
```

## Related Commands

[tapon-1](https://docs.moropo.com/creating-tests/commands/tapon-1 "mention")

[tapon](https://docs.moropo.com/creating-tests/commands/tapon "mention")
