public SeleneDriver Should(Condition <IWebDriver> condition) { Selene.WaitFor( this.Value, condition, this.config.Timeout ?? Configuration.Timeout, this.config.PollDuringWaits ?? Configuration.PollDuringWaits ); return(this); }
public SeleneCollection ShouldNot(Condition <SeleneCollection> condition) { return(Selene.WaitForNot(this, condition)); }
public SeleneElement ShouldNot(Condition <SeleneElement> condition) { return(Selene.WaitForNot(this, condition)); }
public SeleneDriver Should(Condition <IWebDriver> condition) { Selene.WaitFor(this.Value, condition); return(this); }