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