public SeleniumExample(Browser browser, string operatingSystem)
 {
     _webDriverAdapter = new WebDriverAdapter(Session.Remote, browser, operatingSystem);
 }
Пример #2
0
 public WebElementAdapter(SyncWebElement syncWebElement, IWebDriverAdapter driver)
 {
     this.syncWebElement = syncWebElement;
     this.driver         = driver;
 }
Пример #3
0
 public TargetLocatorAdapter(SyncRemoteTargetLocator syncRemoteTargetLocator, IWebDriverAdapter webDriver)
 {
     this.syncRemoteTargetLocator = syncRemoteTargetLocator;
     this.webDriver = webDriver;
 }