public void AskQuestionTest()
        {
            ContactPage contactPage = new ContactPage(step.driver);

            step.GoToPage(BASE_URL);
            contactPage.AskQuestion(EMAIL, BOOK_NUMBER, QUESTION);
            Assert.IsTrue(step.driver.FindElement(By.XPath(XPATH_SEND_MESSAGE)).Displayed);
        }