Bumblebee.Examples.Web.IntegrationTests.RedditTests.given_valid_credentials_when_logging_in_then_logged_in C# (CSharp) Метод

given_valid_credentials_when_logging_in_then_logged_in() приватный Метод

private given_valid_credentials_when_logging_in_then_logged_in ( ) : void
Результат void
		public void given_valid_credentials_when_logging_in_then_logged_in()
		{
			Threaded<Session>
				.CurrentBlock<LoggedOutPage>()
				.LoginArea
				.Email.EnterText("bumblebeeexample")
				.Password.EnterText("123abc!!")
				.LoginButton.Click()
				.VerifyPresenceOf("the logout link", By.CssSelector(".user a"));
		}