public void TestInitialize()
 {
     mainScreen = Screen.Launch<MainScreen>(ApplicationFilePath);
 }
        public void FromProcess()
        {
            //Act
            mainScreen = Screen.FromProcess<MainScreen>(mainScreen.Application.Process);

            //Assert
            Assert.IsTrue(mainScreen.Application.Exists);
        }