Exemplo n.º 1
0
 public HtmlHoverableElement(IWebElement webElement, By by, HtmlSection parent) : base(webElement, by, parent)
 {
 }
Exemplo n.º 2
0
 public HtmlHoverableElement(IWebDriver webDriver, By by, HtmlSection parent) : base(webDriver, by, parent)
 {
 }
Exemplo n.º 3
0
 public HtmlElement(IWebElement webElement, HtmlSection parent) : base(webElement, parent)
 {
 }
Exemplo n.º 4
0
 public HtmlElementsList(IWebElement webElement, By by, HtmlSection parent) : this()
 {
     Elements = webElement.FindElements(by).Select(x => new HtmlElement(x, parent)).ToList();
 }
Exemplo n.º 5
0
 public OverlayBase(IWebDriver webDriver, By by, HtmlSection parent) : base(webDriver, by, parent)
 {
 }
Exemplo n.º 6
0
 public OverlayBase(IWebElement webElement, By by, HtmlSection parent) : base(webElement, by, parent)
 {
 }
Exemplo n.º 7
0
 public HtmlSection(IWebElement webElement, HtmlSection parent) : this()
 {
     this._webElement = webElement;
     this.parent      = parent;
 }
Exemplo n.º 8
0
 public HtmlSection(IWebDriver webDriver, By by, HtmlSection parent) : this()
 {
     this._webDriver = webDriver;
     this.by         = by;
     this.parent     = parent;
 }
 public HtmlButtonElement(IWebDriver webDriver, By by, HtmlSection parent) : base(webDriver, by, parent)
 {
 }
Exemplo n.º 10
0
 public HtmlButtonElement(IWebElement webElement, By by, HtmlSection parent) : base(webElement, by, parent)
 {
 }
Exemplo n.º 11
0
 public HtmlInputElement(IWebElement webElement, By by, HtmlSection parent) : base(webElement, by, parent)
 {
 }