// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Net.Http; using System.Threading.Tasks; using AngleSharp.Dom.Html; namespace Microsoft.AspNetCore.Identity.FunctionalTests.Account { public class ConfirmEmail : DefaultUIPage { public ConfirmEmail( HttpClient client, IHtmlDocument document, DefaultUIContext context) : base(client, document, context) { } public static async Task Create(IHtmlAnchorElement link, HttpClient client, DefaultUIContext context) { var response = await client.GetAsync(link.Href); var confirmEmail = await ResponseAssert.IsHtmlDocumentAsync(response); return new ConfirmEmail(client, confirmEmail, context); } } }