How to count number of elements in a web page
Hi,I want to count number of elements in a web page.(ex. how many <li> in a web page?)If I do with jQuery, $(function() { var size = $('li').length; }); or VBA, document.getElementsByTagName("li").length I want to do same as this with Blue Prism...