Works great for me:
Array.prototype.diff = function(a) { return this.filter(function(i) {return a.indexOf(i) < 0;}); }; const dif = [[TABLE1]].diff([[TABLE2]]); [[DIF]] = (dif);Combine MATCH and AT - Is Element Exists by Coordinates
-
Hi ,
I have examples here https://wiki.bablosoft.com/doku.php?id=how_to_search_for_element ,
but did not get it working.
It is possible to check is element exists by coordinates ?
Lets say i have 30 thumbnails on page and not everytime they are on that page ,
so i want to check are existing they before clicking :MATCH>div class="thumb" >AT>100, 100
if exists i will click on it, else i will go to check another coordinates and so on.
Thanks.
