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
Implement function that compares the same element in two different snapshots (or states) of a page.
Discussion points
The original function in Cornipickle worked because each DOM element touched by the interpreter was given an ID. If the element moved inside the structure of the page, one could still track it because of this ID (even if its DOM path changed). Can we do this with the current setup?
An alternate way of doing this would be to create a JS object that captures all the relevant properties of the DOM node, so that its track inside the document afterwards does not need to be kept.
The text was updated successfully, but these errors were encountered:
Implement function that compares the same element in two different snapshots (or states) of a page.
Discussion points
The text was updated successfully, but these errors were encountered: