File: Pages\Account\Manage\ExternalLogins.cs
Web Access
Project: src\src\Identity\test\Identity.FunctionalTests\Microsoft.AspNetCore.Identity.FunctionalTests.csproj (Microsoft.AspNetCore.Identity.FunctionalTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Net.Http;
using AngleSharp.Dom.Html;
 
namespace Microsoft.AspNetCore.Identity.FunctionalTests.Account.Manage;
 
public class ExternalLogins : DefaultUIPage
{
    public ExternalLogins(HttpClient client, IHtmlDocument externalLoginDocument, DefaultUIContext context)
        : base(client, externalLoginDocument, context)
    {
        if (context.SocialLoginProvider != null && context.PasswordLoginEnabled)
        {
            RemoveExternalLogin = HtmlAssert.HasForm("#remove-login-Contoso", Document);
        }
 
        if (context.SocialLoginProvider != null)
        {
            ExternalLoginDisplayName = HtmlAssert.HasElement("#login-provider-Contoso", Document);
        }
    }
 
    public IHtmlFormElement RemoveExternalLogin { get; }
    public IHtmlElement ExternalLoginDisplayName { get; }
}