Tracking a section of webpage as well as changes within its individual hyperlinks

Hello, I am tracking state webpages for legislation progress.

I need to track changes to multiple individual hyperlinks (i.e. to bill language) within a section of the webpage (e.g Initiated, In Committee, Signed), as well as changes to the section itself (additions, deletions of legislation in sections as the legislation progresses).

In other words, I need to track an entire section for changes, as well as href tracking the hyperlinks within the sections.

Any help would be so appreciated!

check out How to monitor Attribute and Property value. it shows how attributes like href or src can be monitored for changes. basic steps here are:

  1. select the elements whose attributes need to be monitored for changes.
  2. select href as the monitored field. text is monitored by default.

when monitoring a section’s content as well as the section’s anchor tag’s href, an additional selector can be added to select the section’s anchor tag and monitor their attributes. here are the seps after making the first selection:

  1. click “add” button to add a new selector.
  2. edit the selector by copying the selector or the first selection and appending a to it. notice the space before a.
  3. select href as the monitored field.

this will select all anchor tags within the selected section. you will notice that the text preview now displays hrefs too. here is a screenshot of configuring this using the visual selector:

note that if the selector was just a, it will select all anchor tags in the page.

hope this helps. cheers!