This commit is contained in:
30
Tests/E2ETests/MainWindowTest.cs
Normal file
30
Tests/E2ETests/MainWindowTest.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user