Esempio 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;
 }
Esempio n. 2
0
 public WaitAction(IAdvancedWebDriver driver, string clue, ElementClueEnum type, bool wait = false) : base(driver, clue, type, wait)
 {
 }
Esempio n. 3
0
 public InputAction(IAdvancedWebDriver driver, string clue, ElementClueEnum type, string text, bool wait = false) : base(driver, clue, type, wait)
 {
     this.Text = text;
 }