问题
How to find a specific element, or a list of elements by using their TagName using Watin?
回答1:
As of WatiN 2.0 beta 1 this has changed to:
ie.ElementWithTag("h1", constraint);
Constraints are created when using the Find.XXX methods.
Here is an example:
ie.ElementWithTag("h1", Find.ByClass("blue");
回答2:
For example, to find the first <h1> on a page, use:
ie.Element("h1", Find.ByIndex(0))
回答3:
this is what worked for me:
var element = ie.Element(x => x.Text == "[innerText]" && x.TagName == "[tagname]");
来源:https://stackoverflow.com/questions/389066/how-to-find-an-element-in-watin-by-its-tag-name