Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing Tap event while testing with Selenium #71

Open
Walibu opened this issue Mar 2, 2020 · 0 comments
Open

Missing Tap event while testing with Selenium #71

Walibu opened this issue Mar 2, 2020 · 0 comments

Comments

@Walibu
Copy link

Walibu commented Mar 2, 2020

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant