Bumblebee.Examples.Web.IntegrationTests.RedditTests.given_invalid_credentials_when_loggging_in_then_return_user_to_login C# (CSharp) Method

given_invalid_credentials_when_loggging_in_then_return_user_to_login() private method

		public void given_invalid_credentials_when_loggging_in_then_return_user_to_login()
		{
			Threaded<Session>
				.CurrentBlock<LoggedOutPage>()
				.LoginArea
				.Email.EnterText("jjjjjjj")
				.Password.EnterText("jjjjjjj")
				.LoginButton.Click<LoggedOutPage>()
				.VerifyPresenceOf("the login area", By.Id("login_login-main"));
		}