You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
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
The text was updated successfully, but these errors were encountered: