Files
elwig/Tests/E2ETests/MainWindowTest.cs
Thomas Hilscher ddd821e478
All checks were successful
Test / Run tests (push) Successful in 2m16s
Tests: Add E2ETests
2024-07-07 01:22:43 +02:00

31 lines
613 B
C#

namespace Tests.E2ETests {
[TestFixture]
public class MainWindowTest : TestBase {
[OneTimeSetUp]
public void ClassSetUp() {
}
[SetUp]
public void TestSetUp() {
Setup();
}
[OneTimeTearDown]
public void ClassTearDown() {
StopWinappDriver();
}
[TearDown]
public void TestTearDown() {
TearDown();
}
[Test]
public void StartApplication() {
AppSession.FindElementByName("Mitglieder").Click();
Thread.Sleep(5000);
}
}
}