I am monitoring items in a page via an xpath rule, and I want to get alerted on new items.
The problem is that (apparently) the site takes the items from the DB and does not sort them before adding them to the page. So the order of the items on the page is unstable - e.g. sometimes it’s a, b, c and other times it’s a, c, b
I get alerted on an item deletion or insertion every time the order changes (which is on almost every time the page is checked, since there are a lot of items).
Is there an existing option (or one that could be added) to sort the items after collecting them and before comparing to history? This would resolve the issue.