Ejemplo n.º 1
0
 public ElementAction(IAdvancedWebDriver driver, string clue, ElementClueEnum type, bool wait = false)
 {
     this.WaitBefore = wait;
     this.Clue       = clue;
     this.Type       = type;
     this.Driver     = driver;
 }
Ejemplo n.º 2
0
 public WaitAction(IAdvancedWebDriver driver, string clue, ElementClueEnum type, bool wait = false) : base(driver, clue, type, wait)
 {
 }
Ejemplo n.º 3
0
 public InputAction(IAdvancedWebDriver driver, string clue, ElementClueEnum type, string text, bool wait = false) : base(driver, clue, type, wait)
 {
     this.Text = text;
 }