コード例 #1
0
 public PageObject(IWebDriver driver)
 {
     this.driver    = driver;
     this.actionbot = new Actionbot(this.driver);
 }
コード例 #2
0
ファイル: Component.cs プロジェクト: natalytart/natalytart
 public Component(IWebDriver driver, By locator)
 {
     this.driver    = driver;
     this.actionbot = new Actionbot(this.driver);
     this.locator   = locator;
 }