资 源 简 介
The purpose of the project is to create an easy way to create xpath expressions for verifying the presence of elements in a document.
Expressions can be created based on attributes, parents, siblings, children, contained text and exact text.
More features will be supported in the near future.
Examples:
```
XPathFinder.Find.Tag("a").With.Parent("div").With.Parent("div").ToXPathExpression();
XPathFinder.Find.Tag("a").Containing("Home Page").ToXPathExpression();
XPathFinder.Find.Tag("div").With.Attribute("class","SomeCssClass").ToXPathExpression();
XPathFinder.Find.Tag("a").With.Attribute("href", "http://test.test.com").ToXPathExpression();
XPathFinder.Find.Tag("a").With.Text("Test").ToXPathExpression();
XPathFinder.Find.Tag("div").With.Attribute("class", "myClass")