Ejemplo n.º 1
0
 public ElementList(ElementAttribute attribute, BrowserSession browser, Options options) : base(attribute, browser, options)
 {
 }
Ejemplo n.º 2
0
 public Button(ElementAttribute attribute, BrowserSession browser, Options findOptions, Coypu.Element element = null) : base(attribute, browser, findOptions, element)
 {
 }
Ejemplo n.º 3
0
 protected Field(ElementAttribute attribute, BrowserSession browser, Options options, Coypu.Element element = null)
     : base(attribute, browser, options, element)
 {
 }
Ejemplo n.º 4
0
 protected Element(ElementAttribute attribute, BrowserSession browser, Options findOptions, Coypu.Element element = null)
     : base(attribute, browser, findOptions)
 {
     coypuElement = element;
 }
Ejemplo n.º 5
0
 protected BaseElement(ElementAttribute attribute, BrowserSession browser, Options findOptions)
 {
     Attribute   = attribute;
     Browser     = browser;
     FindOptions = findOptions;
 }