Esempio n. 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);
 }
Esempio n. 2
0
 public SeleneCollection Should(Condition <SeleneCollection> condition)
 {
     return(Selene.WaitFor(this, condition));
 }
Esempio n. 3
0
 public SeleneElement Should(Condition <SeleneElement> condition)
 {
     return(Selene.WaitFor(this, condition));
 }
Esempio n. 4
0
 public SeleneDriver Should(Condition <IWebDriver> condition)
 {
     Selene.WaitFor(this.Value, condition);
     return(this);
 }