E2ETests: Refactor to use .FindElement(By.Something())
All checks were successful
Test / Run tests (push) Successful in 2m12s

This commit is contained in:
2024-07-19 14:34:12 +02:00
parent dd48a24c58
commit 7246852181
5 changed files with 88 additions and 88 deletions

View File

@ -39,7 +39,7 @@ namespace Tests.E2ETests {
GC.SuppressFinalize(this);
App.Close();
try {
Desktop.FindElementByName("Ja").Click();
Desktop.FindElement(By.Name("Ja")).Click();
} catch { }
App.Dispose();
Desktop.Close();