Esempio n. 1
0
 public VSwitchPanel(IWebDriver webDriver, IWebElement vSwitcPanelWebElement, bool loadOnStart = true, bool loadNotVisible = true, bool slowLoad = false)
     : base(webDriver)
 {
     Context   = vSwitcPanelWebElement;
     LeftGrid  = new VGrid(Context.FindElements(By.XPath(".//div[contains(@class,'vgrid')]"))[0], WebDriver, loadOnStart, loadNotVisible, slowLoad);
     RightGrid = new VGrid(Context.FindElements(By.XPath(".//div[contains(@class,'vgrid')]"))[1], WebDriver, loadOnStart, loadNotVisible, slowLoad);
 }
 public VGridEditor(IWebDriver webDriver, string windowName = "") : base(webDriver, windowName)
 {
     gridEdycja = new VGrid(Window, WebDriver, false);
 }