public void ACheckBoxGroupClick(string pageCode, string itemCode, string itemValue, BrowserUntils browserUntils)
        {
            browserUntils.ExecuteScript("window.findVueByName('" + pageCode + "').$refs." + itemCode + ".$children" + "[" + (Convert.ToInt32(itemValue) - 1) + "].$el.firstChild.click();");

            ScreenShot.Shot(browserUntils.browser);
        }
        public void ATabClick(string pageCode, string itemCode, string itemValue, BrowserUntils browserUntils)
        {
            browserUntils.ExecuteScript("window.findVueByName('" + pageCode + "').$refs." + itemCode + ".setActiveItemByIndex(" + itemValue + ")");

            ScreenShot.Shot(browserUntils.browser);
        }
        public void ARadioClick(string pageCode, string itemCode, string itemValue, BrowserUntils browserUntils)
        {
            browserUntils.ExecuteScript("window.findVueByName('" + pageCode + "').$refs." + itemCode + ".$el.firstChild.click();");

            ScreenShot.Shot(browserUntils.browser);
        }