Skip to content

Commit c914e57

Browse files
authored
Merge pull request #20 from cleeding/accountsum-webdriverfactory-changes
Accountsum webdriverfactory changes
2 parents c291037 + ac6f0c1 commit c914e57

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Tests/AccountSummaryTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void CheckSectionTableData()
6969
var expectedValues = new (int board, int column, string expectedText)[]
7070
{
7171
(1, 1, "Savings"),
72-
(1, 3, "$1000.9")
72+
(1, 3, "$1000")
7373
};
7474

7575
foreach (var (board, column, expectedText) in expectedValues)

Utils/WebDriverFactory.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ public static IWebDriver CreateDriver(string browser = "chrome", bool headless =
3131
);
3232
}
3333

34+
chromeOptions.AddUserProfilePreference("profile.password_manager_leak_detection", false);
35+
3436
driver = new ChromeDriver(chromeOptions);
3537
break;
3638

0 commit comments

Comments
 (0)