Esempio n. 1
0
 public EUEMouseProxy(IWebDriver driver, IMouse mouse, EUEEntryHandler dataExchangeEntryHelper, EUEConfiguration conf)
 {
     this.driver = driver;
     this.mouse  = mouse;
     this.dataExchangeEntryHelper = dataExchangeEntryHelper;
     this.conf   = conf;
     interceptor = new EUEElementInterceptor(driver, dataExchangeEntryHelper, conf, METHODS);
 }
Esempio n. 2
0
 public EUENavigationProxy(IWebDriver driver, INavigation navigation, EUEEntryHandler dataExchangeEntryHelper, EUEConfiguration conf)
 {
     this.driver     = driver;
     this.navigation = navigation;
     this.dataExchangeEntryHelper = dataExchangeEntryHelper;
     this.conf   = conf;
     interceptor = new EUEElementInterceptor(driver, dataExchangeEntryHelper, conf, METHODS);
 }
 public EUETargetLocatorProxy(IWebDriver driver, ITargetLocator targetLocator, EUEEntryHandler dataExchangeEntryHelper, EUEConfiguration conf)
 {
     this.driver                  = driver;
     this.targetLocator           = targetLocator;
     this.dataExchangeEntryHelper = dataExchangeEntryHelper;
     this.conf   = conf;
     interceptor = new EUEElementInterceptor(driver, dataExchangeEntryHelper, conf, METHODS);
 }
 public EUEWebElementProxy(IWebDriver driver, IWebElement element, EUEEntryHandler dataExchangeEntryHelper, EUEConfiguration conf)
 {
     this.driver  = driver;
     this.element = element;
     this.dataExchangeEntryHelper = dataExchangeEntryHelper;
     this.conf   = conf;
     interceptor = new EUEElementInterceptor(driver, dataExchangeEntryHelper, conf, METHODS);
 }
 public EUEOptionsProxy(IWebDriver driver, IOptions options, EUEEntryHandler dataExchangeEntryHelper, EUEConfiguration conf)
 {
     this.driver  = driver;
     this.options = options;
     this.dataExchangeEntryHelper = dataExchangeEntryHelper;
     this.conf   = conf;
     interceptor = new EUEElementInterceptor(driver, dataExchangeEntryHelper, conf, METHODS);
 }
Esempio n. 6
0
 public EUEKeyboardProxy(IWebDriver driver, IKeyboard keyboard, EUEEntryHandler dataExchangeEntryHelper, EUEConfiguration conf)
 {
     this.driver   = driver;
     this.keyboard = keyboard;
     this.dataExchangeEntryHelper = dataExchangeEntryHelper;
     this.conf   = conf;
     interceptor = new EUEElementInterceptor(driver, dataExchangeEntryHelper, conf, METHODS);
 }
 public ForwardedOptions(EUEElementInterceptor interceptor, IOptions original)
 {
     this.interceptor = interceptor;
     this.original    = original;
 }