Example #1
0
 public SeleneDriver Should(Condition <IWebDriver> condition)
 {
     Selene.WaitFor(
         this.Value,
         condition,
         this.config.Timeout ?? Configuration.Timeout,
         this.config.PollDuringWaits ?? Configuration.PollDuringWaits
         );
     return(this);
 }
Example #2
0
 public SeleneCollection Should(Condition <SeleneCollection> condition)
 {
     return(Selene.WaitFor(this, condition));
 }
Example #3
0
 public SeleneElement Should(Condition <SeleneElement> condition)
 {
     return(Selene.WaitFor(this, condition));
 }
 public SeleneDriver Should(Condition <IWebDriver> condition)
 {
     Selene.WaitFor(this.Value, condition);
     return(this);
 }