public void CheckErrorMessageWhenUserSubmitQuestionToBBCWithEmptyName(string story, string name, string email, string contact, string location, bool over16Box, bool termsBox)
        {
            BusinessLogicLayer BLL = new BusinessLogicLayer();

            BLL.GoToHowToSharePage();
            BLL.SubmitQuestionToBBC(story, name, email, contact, location, over16Box, termsBox);
            BLL.CheckFormWithEmptyName("Name can't be blank");
        }