コード例 #1
0
        public async Task TheLoginButtonAfterInputtingValidCredentialsShowTheMainScreen()
        {
            var email    = randomEmail();
            var password = await User.Create(email);

            app.Tap(Login.EmailText);
            app.EnterText(email);
            app.Tap(Login.PasswordText);
            app.EnterText(password);
            app.Tap(Login.LoginButton);

            app.AssertLoggedInSuccesfully();
        }