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
This is a generic behavior which will attempt to click on all <a> links, separate from extracting URL for the link.
The reasons for this behavior is that many <a> links trigger dynamic loading that is distinct from normal nav.
For example, an <a> may trigger a dynamic update with history API, or load additional images and not navigate away at all, etc...
The behavior needs to differentiate between links with URLs and in page or no URL links.
It will also need an onbeforeunload handler to block navigating away from the page, if there is no click handler or the page still navigates to another page...
It should also avoid duplicates, if the a link has a URL.
The text was updated successfully, but these errors were encountered:
This is a generic behavior which will attempt to click on all
<a>
links, separate from extracting URL for the link.The reasons for this behavior is that many
<a>
links trigger dynamic loading that is distinct from normal nav.For example, an
<a>
may trigger a dynamic update with history API, or load additional images and not navigate away at all, etc...The behavior needs to differentiate between links with URLs and in page or no URL links.
It will also need an onbeforeunload handler to block navigating away from the page, if there is no click handler or the page still navigates to another page...
It should also avoid duplicates, if the a link has a URL.
The text was updated successfully, but these errors were encountered: