31 lines
613 B
C#
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);
|
|
}
|
|
}
|
|
}
|