Updated gitignore to prevent password.txt from being commited to git even if renamed to lowercases.
This commit is contained in:
+1
-2
@@ -1,5 +1,4 @@
|
|||||||
Password.txt
|
[Pp]assword.txt
|
||||||
*/Password.txt
|
|
||||||
|
|
||||||
# ---> VisualStudioCode
|
# ---> VisualStudioCode
|
||||||
.vscode/*
|
.vscode/*
|
||||||
|
|||||||
+1
-1
@@ -16,7 +16,7 @@ await page.GetByRole(AriaRole.Button, new() { Name = "CONTINUE" }).ClickAsync(ne
|
|||||||
await Task.Delay(5000);
|
await Task.Delay(5000);
|
||||||
|
|
||||||
var egovOtp = await OTPExtractor.GetEgovOTP(context, page);
|
var egovOtp = await OTPExtractor.GetEgovOTP(context, page);
|
||||||
if (egovOtp != null)
|
if (egovOtp is not null)
|
||||||
Console.WriteLine($"Extracted eGov OTP: {egovOtp}");
|
Console.WriteLine($"Extracted eGov OTP: {egovOtp}");
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user