public void EnableBlackboardVoiceAuthoringOption()
        {
            // Enable Blackboard Collaborate Voice Authoring Preference option
            Logger.LogMethodEntry("Preference",
                                  "EnableBlackboardVoiceAuthoringOption",
                                  base.IsTakeScreenShotDuringEntryExit);
            GeneralPreferencesPage generalPreferencePage = new GeneralPreferencesPage();

            //Select The Main Frame
            generalPreferencePage.SelectThePreferenceWindowWithFrame();
            //Enable Blackboard Collaborate Voice Authoring Option
            generalPreferencePage.EnableBlackBoardCollaborateVoiceAuthoring();
            //Fill Black board Fname Lname Email TextBoxes
            generalPreferencePage.EnterBlackBoardIMDetails();
            //Save The Preference
            generalPreferencePage.SavePreferences();
            Logger.LogMethodExit("Preference",
                                 "EnableBlackboardVoiceAuthoringOption",
                                 base.IsTakeScreenShotDuringEntryExit);
        }