As we all know behind the scenes power automate uses jquery selectors for web automation. I was trying to get the elements using jquery selector under step run javascript for web page, in following fashion:
var count = $("ul.class1").childElementCount;
return count
but above code always returns unknown. Whereas same code works on browser console of the respective webpage.
Can anyone suggest what is wrong here.
Thanks