public void Execute(Arguments arguments)
        {
            IEWrapper ieWrapper = IEManager.CurrentIE;

            try
            {
                ieWrapper.ActivateTab(arguments.By.Value, arguments.Phrase.Value);
            }
            catch (Exception ex)
            {
                throw new ApplicationException($"Error occured during tab activation. Exception message: {ex.Message}", ex);
            }
        }