namespace Tests.E2ETests { [SetUpFixture] public static class Setup { private static WinAppDriver? Driver; [OneTimeSetUp] public static void SetupWinAppDriver() { Driver = new(); } [OneTimeTearDown] public static void TeardownWinAppDriver() { Driver?.Dispose(); } } }