We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 167b79e commit 89854c4Copy full SHA for 89854c4
UiTests/Common/UiTestHelpers.cs
@@ -73,6 +73,12 @@ public static async Task SuccessiveLogin_MicrosoftIdFlow_ValidEmailPassword(IPag
73
await StaySignedIn_MicrosoftIdFlow(page, staySignedInText, output);
74
}
75
76
+ /// <summary>
77
+ /// Enters the email of the user to sign in.
78
+ /// </summary>
79
+ /// <param name="page">Playwright Page object the login is occurring on</param>
80
+ /// <param name="email">The email to use for the login</param>
81
+ /// <param name="output">Used to communicate output to the test's Standard Output</param>
82
public static async Task EnterEmailAsync(IPage page, string email, ITestOutputHelper? output = null)
83
{
84
WriteLine(output, $"Logging in ... Entering and submitting user name: {email}.");
0 commit comments