Skip to content

Missing Tap event while testing with Selenium #71

Description

@Walibu

The following DOM Elements get about every second a click from Selenium tests
Between them other actions taking place and the JS engine is quite busy.
<div class="taptest" (tap)="onTap($event)">
</div>
<div class="clicktest" (click)="onClick($event)">
</div>

public onTap(event: any) {
countTaps();
}
public onClick(event: any) {
countClicks();
}

Out of 1000 clicks:

  • all (click) events are triggered,
  • but at least one (tap) event is missing

Just in case somebody else has same or similar problem.
Versions used:
V8 engine (https://v8.dev/blog/v8-release-49) Chromium v49 (no pointerEvents)
Hammerjs 2.0.8
Angular 8.2.14

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions