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
Investigate problem with onclick event for react when using plugin for user interaction , react plugin, xmlhttprequest plugin, and zone manager.
More context here -> #164 (comment)
The text was updated successfully, but these errors were encountered:
I also found this bug recently. It looks like React attaches event listener only to root elements (or document for versions < 17.0.0). instrumentation-user-interaction doesn't work here, because of this condition (document doesn't have the getAttribute method):
if(!element.getAttribute){returnundefined;}
Changing the logic works, but the xpath is mapping to / (document).
The original event is still accessible though as the first extra argument.
Investigate problem with onclick event for react when using plugin for user interaction , react plugin, xmlhttprequest plugin, and zone manager.
More context here -> #164 (comment)
The text was updated successfully, but these errors were encountered: