-
Notifications
You must be signed in to change notification settings - Fork 575
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels