46 references to IsHtmlDocumentAsync
Microsoft.AspNetCore.Identity.FunctionalTests (46)
AuthorizationTests.cs (3)
89await ResponseAssert.IsHtmlDocumentAsync(response); 122await ResponseAssert.IsHtmlDocumentAsync(response); 150await ResponseAssert.IsHtmlDocumentAsync(response);
Pages\Account\ConfirmEmail.cs (1)
21var confirmEmail = await ResponseAssert.IsHtmlDocumentAsync(response);
Pages\Account\ExternalLogin.cs (2)
35var index = await ResponseAssert.IsHtmlDocumentAsync(indexResponse); 49var register = await ResponseAssert.IsHtmlDocumentAsync(registerResponse);
Pages\Account\ForgotPassword.cs (1)
26var forgotPasswordConfirmation = await ResponseAssert.IsHtmlDocumentAsync(forgotPasswordConfirmationResponse);
Pages\Account\Login.cs (6)
41var contosoLogin = await ResponseAssert.IsHtmlDocumentAsync(contosoLoginResponse); 49var forgotPassword = await ResponseAssert.IsHtmlDocumentAsync(response); 57var forgotPassword = await ResponseAssert.IsHtmlDocumentAsync(response); 69var index = await ResponseAssert.IsHtmlDocumentAsync(indexResponse); 93var lockout = await ResponseAssert.IsHtmlDocumentAsync(lockedOutResponse); 113var loginWithTwoFactor = await ResponseAssert.IsHtmlDocumentAsync(loginWithTwoFactorResponse);
Pages\Account\LoginWith2fa.cs (2)
36var index = await ResponseAssert.IsHtmlDocumentAsync(indexResponse); 44var loginWithRecoveryCode = await ResponseAssert.IsHtmlDocumentAsync(goToLoginWithRecoveryCode);
Pages\Account\LoginWithRecoveryCode.cs (1)
28var index = await ResponseAssert.IsHtmlDocumentAsync(indexPage);
Pages\Account\Manage\DeleteUser.cs (1)
26var index = await ResponseAssert.IsHtmlDocumentAsync(indexResponse);
Pages\Account\Manage\Email.cs (2)
41var manage = await ResponseAssert.IsHtmlDocumentAsync(manageResponse); 54var manage = await ResponseAssert.IsHtmlDocumentAsync(manageResponse);
Pages\Account\Manage\EnableAuthenticator.cs (1)
41var showRecoveryCodes = await ResponseAssert.IsHtmlDocumentAsync(showRecoveryCodesResponse);
Pages\Account\Manage\Index.cs (8)
50var twoFactor = await ResponseAssert.IsHtmlDocumentAsync(goToTwoFactor); 59var twoFactor = await ResponseAssert.IsHtmlDocumentAsync(goToTwoFactor); 68var changePasswordDocument = await ResponseAssert.IsHtmlDocumentAsync(goToChangePassword); 79var setPasswordDocument = await ResponseAssert.IsHtmlDocumentAsync(setPasswordResponse); 86var personalData = await ResponseAssert.IsHtmlDocumentAsync(goToPersonalData); 93var email = await ResponseAssert.IsHtmlDocumentAsync(goToEmail); 100var externalLoginDocument = await ResponseAssert.IsHtmlDocumentAsync(goToExternalLogin); 108var externalLoginDocument = await ResponseAssert.IsHtmlDocumentAsync(goToExternalLogin);
Pages\Account\Manage\LinkExternalLogin.cs (1)
27var externalLoginDocument = await ResponseAssert.IsHtmlDocumentAsync(externalLoginResponse);
Pages\Account\Manage\ManageExternalLogin.cs (1)
31var manageExternalLoginDocument = await ResponseAssert.IsHtmlDocumentAsync(manageExternalLoginResponse);
Pages\Account\Manage\PersonalData.cs (1)
24var delete = await ResponseAssert.IsHtmlDocumentAsync(goToDelete);
Pages\Account\Manage\TwoFactorAuthentication.cs (2)
39var enableAuthenticator = await ResponseAssert.IsHtmlDocumentAsync(goToEnableAuthenticator); 47var resetAuthenticator = await ResponseAssert.IsHtmlDocumentAsync(goToResetAuthenticator);
Pages\Account\Register.cs (3)
32var contosoLogin = await ResponseAssert.IsHtmlDocumentAsync(contosoLoginResponse); 49var index = await ResponseAssert.IsHtmlDocumentAsync(indexResponse); 66var register = await ResponseAssert.IsHtmlDocumentAsync(registerResponse);
Pages\Account\ResetPassword.cs (2)
21var resetPassword = await ResponseAssert.IsHtmlDocumentAsync(resetPasswordResponse); 37var resetPasswordConfirmation = await ResponseAssert.IsHtmlDocumentAsync(resetPasswordConfirmationResponse);
Pages\Contoso\Login.cs (2)
47return await ResponseAssert.IsHtmlDocumentAsync(indexResponse); 51return await ResponseAssert.IsHtmlDocumentAsync(externalLogInResponse);
Pages\Index.cs (5)
37var index = await ResponseAssert.IsHtmlDocumentAsync(goToIndex); 47var register = await ResponseAssert.IsHtmlDocumentAsync(goToRegister); 57var login = await ResponseAssert.IsHtmlDocumentAsync(goToLogin); 67var manage = await ResponseAssert.IsHtmlDocumentAsync(goToManage); 77var manage = await ResponseAssert.IsHtmlDocumentAsync(goToManage);
Pages\RegisterConfirmation.cs (1)
34var confirm = await ResponseAssert.IsHtmlDocumentAsync(goToConfirm);