internal FillInWith(Element element, Driver driver, RobustWrapper robustWrapper, DriverScope scope, Options options) { this.element = element; this.driver = driver; this.robustWrapper = robustWrapper; this.scope = scope; this.options = options; }
public Button(ElementAttribute attribute, BrowserSession browser, Options findOptions, Coypu.Element element = null) : base(attribute, browser, findOptions, element) { }
public FillInWith(Element element, Driver driver, RobustWrapper robustWrapper) { this.element = element; this.driver = driver; this.robustWrapper = robustWrapper; }
private void Choose(Coypu.Element element) { Browser.Driver.Choose(element); }
protected Element(ElementAttribute attribute, BrowserSession browser, Options findOptions, Coypu.Element element = null) : base(attribute, browser, findOptions) { coypuElement = element; }
/// <summary> /// Fill in a previously found text field /// </summary> /// <param name="element">The text field</param> /// <returns>With</returns> public FillInWith FillIn(Element element, Options options = null) { return new FillInWith(element, driver, robustWrapper, this, SetOptions(options)); }
public void Click(Element element) { robustWrapper.Robustly(() => driver.Click(element)); }
public FillInWith FillIn(Element element) { return new FillInWith(element, driver, robustWrapper); }
protected Field(ElementAttribute attribute, BrowserSession browser, Options options, Coypu.Element element = null) : base(attribute, browser, options, element) { }