Exemple #1
0
 public PageObject(IWebDriver driver)
 {
     this.driver    = driver;
     this.actionbot = new Actionbot(this.driver);
 }
Exemple #2
0
 public Component(IWebDriver driver, By locator)
 {
     this.driver    = driver;
     this.actionbot = new Actionbot(this.driver);
     this.locator   = locator;
 }