public TagElementLocator(string name = null, string tag = null, bool recursive = false, String contextKey = null, ChildHtmlElementLocator childLocator = null, ElementMatcher <HtmlElement> matcher = null)
     : base(name, contextKey)
 {
     this.Tag          = tag;
     this.Recursive    = recursive;
     this.ChildLocator = childLocator;
     this.Matcher      = matcher;
 }
 public SimpleChildHtmlElementLocator(string name = null, ElementMatcher<HtmlElement> matcher = null, ChildHtmlElementLocator filter = null)
     : base()
 {
     this.Matcher = matcher;
     this.Filter = filter;
 }
Esempio n. 3
0
 public SimpleChildHtmlElementLocator(string name = null, ElementMatcher <HtmlElement> matcher = null, ChildHtmlElementLocator filter = null)
     : base()
 {
     this.Matcher = matcher;
     this.Filter  = filter;
 }