CheckComboBox: Fix SelectedItems property
All checks were successful
Test / Run tests (push) Successful in 2m12s

This commit is contained in:
2024-07-23 10:15:17 +02:00
parent 37adf92e80
commit 49f03c0a3c
4 changed files with 17 additions and 4 deletions

View File

@ -46,5 +46,16 @@
window.Close();
});
}
[Test]
public void Test_Open_MailWindow() {
Assert.DoesNotThrow(() => {
Session.App.FindElement(By.Name("Rundschreiben")).Click();
Thread.Sleep(Utils.WINDOW_OPEN_SLEEP);
var window = Session.CreateWindowDriver("MailWindow");
Assert.That(window.Title, Is.EqualTo($"Rundschreiben - Lese {Elwig.Helpers.Utils.Today.Year} - Elwig"));
window.Close();
});
}
}
}