I want to get all LI with class type equals itempep
This is how I do it now, but its very CPU intensive task
ElementCollection eL = frame.Elements.Filter(Find.By("tagname", "LI") && Find.ByClass("itempep_hp"));
Is there a more efficient way of doing this?
TIA