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