public void MyTestMethod1NUnit() { LoggerHandler.WriteToLog("Start MyTestMethod1NUnit"); //1 LoginPageStep.SignIn(user2.Email, user2.Password); //2 InBoxPageStep.SendMassage(user1.Email, "Test", Serves.GetCountry()); //3 InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user1.Email, user1.Password); //4 InBoxPageStep.MoveMailIntoSpam(user2.Email); //5 InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user2.Email, user2.Password); //6 InBoxPageStep.SendMassage(user1.Email, "Test2", "Hello"); //7 InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user1.Email, user1.Password); //8 InBoxPageStep.GoToSpam(); //assert Assert.IsTrue(InBoxPageStep.CheckLetter(user2.Email, "Test2")); //clear LoggerHandler.WriteToLog("Finish MyTestMethod1NUnit"); }
public void MyTestMethod2() { LoggerHandler.WriteToLog("Start MyTestMethod1NUnit"); //1 LoginPageStep.SignIn(user2.Email, user2.Password); //2 InBoxPageStep.ChooseSettings(); //4 SettingPageStep.ForwardMail(); //5 ForwardPageStep.AddForwordingAddress(user3.Email); //6 InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user3.Email, user3.Password); //7 InBoxPageStep.ClickOnLinkInMail("*****@*****.**"); MessageStep.ConfirmForwarding(); //8 InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user2.Email, user2.Password); //9,10 InBoxPageStep.ChooseSettings(); SettingPageStep.ForwardMail(); ForwardPageStep.SaveRBChange(); //11,12 ForwardPageStep.SetFilterSettings(user1.Email); //13 InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user1.Email, user1.Password); //15 InBoxPageStep.SendMassage(user2.Email, "Test3", "Hello"); //14 InBoxPageStep.SendMassageWithAttach(user2.Email, "Test4", "File", Resource1.PathToFile); //16 InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user2.Email, user2.Password); //asssert Assert.IsTrue(TrashPageStep.CheckLetterInTrash(user1.Email, "Test4")); //Assert.IsTrue(ImportantPageStep.CheckLetterInImportant(user1.Email, "Test4", "Test3")); Assert.IsTrue(InBoxPageStep.CheckLetter(user1.Email, "Test3")); InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user3.Email, user3.Password); Assert.IsTrue(InBoxPageStep.CheckLetter(user1.Email, "Test3")); LoggerHandler.WriteToLog("Finish MyTestMethod1NUnit"); }
public void MyTestMethod11NUnit() { LoggerHandler.WriteToLog("Start MyTestMethod11NUnit"); LoginPageStep.SignIn(user2.Email, user2.Password); //2 InBoxPageStep.SendMassage(user1.Email, "Test6", "Hello"); //3 InBoxPageStep.SignOutAccount(); LoginPageStep.SignIn(user1.Email, user1.Password); //4 InBoxPageStep.MoveMailIntoSpam(user2.Email); InBoxPageStep.GoToSpam(); InBoxPageStep.MoveMailFromSpam(user2.Email); InBoxPageStep.GoToInBoxPage(); Assert.IsTrue(InBoxPageStep.CheckLetter(user2.Email, "Test6")); LoggerHandler.WriteToLog("Finish MyTestMethod11NUnit"); }