public void LogInWithIncorrectInformation()
        {
            UserCreator userCreator      = new UserCreator();
            bool        enabledErrorForm = new HomePage(Driver)
                                           .GoToLogInPage()
                                           .InputVelocityNumberAndBookingReference(userCreator.LastNameVelocityNumberAndPasswordProperties())
                                           .LogInButtonClick()
                                           .ErrorFormIsEnabled();

            Assert.IsTrue(enabledErrorForm);
        }