/// <summary>
        /// Closes the configuration page of a communication DTM
        /// </summary>
        /// <returns>
        /// <br>True: if action was successful</br>
        /// <br>False: if action successful or an error occurred</br>
        /// </returns>
        public bool Run()
        {
            var clickOk = new SpecificFlows.ClickButtonOk();

            if (clickOk.Run())
            {
                Log.Success(LogInfo.Namespace(MethodBase.GetCurrentMethod()), "Configuration tab was successfully closed");
            }
            Log.Error(LogInfo.Namespace(MethodBase.GetCurrentMethod()), "Could not close configuration dialog because the button to close it is not visible");
            return(false);
        }