我希望所有LI的类型等于itempep
这就是我现在的工作方式,但是它的CPU密集型任务
ElementCollection eL = frame.Elements.Filter(Find.By(“tagname”,“LI”)&&& Find.ByClass(“itempep_hp”));
有更有效的方法吗?
TIA
答案 0 :(得分:2)
您需要ElementCollection
吗?这可能会更快:
frame.ElementsWithTag("LI").Where(e => e.ClassName == "itempep_hp");