diff --git a/Tests/AccountSummaryTest.cs b/Tests/AccountSummaryTest.cs index b4e8ceb..7d117af 100644 --- a/Tests/AccountSummaryTest.cs +++ b/Tests/AccountSummaryTest.cs @@ -69,7 +69,7 @@ public void CheckSectionTableData() var expectedValues = new (int board, int column, string expectedText)[] { (1, 1, "Savings"), - (1, 3, "$1000.9") + (1, 3, "$1000") }; foreach (var (board, column, expectedText) in expectedValues) diff --git a/Utils/WebDriverFactory.cs b/Utils/WebDriverFactory.cs index f37d83c..8d7ce01 100644 --- a/Utils/WebDriverFactory.cs +++ b/Utils/WebDriverFactory.cs @@ -31,6 +31,8 @@ public static IWebDriver CreateDriver(string browser = "chrome", bool headless = ); } + chromeOptions.AddUserProfilePreference("profile.password_manager_leak_detection", false); + driver = new ChromeDriver(chromeOptions); break;