private ActiveWindowRightTableWCModel GetRightTableModel()
        {
            IWebElement bottomLocationHeader         = _manager.FindWebElement(By.XPath(ActiveWindowFormLocators.bottomLocationHeaderLocator));
            IWebElement bottomLocationInput          = _manager.FindWebElement(By.XPath(ActiveWindowFormLocators.bottomLocationInputLocator));
            ActiveWindowRightTableWCModel rightModel = new ActiveWindowRightTableWCModel(bottomLocationHeader, bottomLocationInput);

            return(rightModel);
        }
        public ActiveWindowFullWCModel GetFullActiveWindowWCModel()
        {
            IWebElement header = _manager.FindWebElement(By.XPath(ActiveWindowFormLocators.formHeaderLocator));
            ActiveWindowRightTableWCModel rightTableWCModel       = GetRightTableModel();
            ActiveWindowLeftTableWCModel  leftTableWCModel        = GetLeftTableModel();
            ActiveWindowFullWCModel       activeWindowFullWCModel = new ActiveWindowFullWCModel(header, rightTableWCModel, leftTableWCModel);

            return(activeWindowFullWCModel);
        }