Tests: Add E2ETests
All checks were successful
Test / Run tests (push) Successful in 2m16s

This commit is contained in:
2024-07-07 01:22:08 +02:00
parent 658a1f4dc1
commit ddd821e478
6 changed files with 293 additions and 1 deletions

View File

@ -0,0 +1,30 @@
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);
}
}
}