WETIN是一种更有效的方法来编程

时间:2010-05-24 09:32:15

标签: watin

我希望所有LI的类型等于itempep

这就是我现在的工作方式,但是它的CPU密集型任务

ElementCollection eL = frame.Elements.Filter(Find.By(“tagname”,“LI”)&&& Find.ByClass(“itempep_hp”));

有更有效的方法吗?

TIA

1 个答案:

答案 0 :(得分:2)

您需要ElementCollection吗?这可能会更快:

frame.ElementsWithTag("LI").Where(e => e.ClassName == "itempep_hp");