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