public ForgotPasswordPage(FluentTest test) : base(test)
        {
            Url = TargetEnvironment.GetApplicationUrl("/#/forgot-password");
            At  = () => I.Expect.Exists(EmailInput);

            _server = SimpleSmtpServer.Start(25);
        }
Beispiel #2
0
 public LoginPage(FluentTest test)
     : base(test)
 {
     Url = TargetEnvironment.GetApplicationUrl("/");
     At  = () => I.Expect.Exists(EmailInput);
 }