TestInput = "From the About Us page go to the Contact Us page",
ExpectedResults = "The Contact Us page is displayed")]
public void Step1(ITester t)
//we are clicking on the Contact Us item in the Top Menu
t.Testee.Mouse.Click(TestImages.TC002_Rev1.Images.TopMenu.ContactUs);
//we are checking if the Contact Us page has been displayed
if(t.Testee.FindImage(TestImages.TC002_Rev1.Images.Screens.ContactUs).HasSucceeded)
t.Report.PassStep("The Contact Us page is displayed");
t.Report.FailStep("The Contact Us page is not displayed");