public static void AssertInvalidFileFormatErrorMessage(this ContactFormPage page, string text) { Assert.IsTrue(page.ErrorMessageForInvalidFileFormat.Displayed); StringAssert.Contains(text, page.ErrorMessageForInvalidFileFormat.Text); }
public static void AssertSubCategoryErrorMessage(this ContactFormPage page, string text) { Assert.IsTrue(page.ErrorMessageForSubCategory.Displayed); StringAssert.Contains(text, page.ErrorMessageForSubCategory.Text); }
public static void AssertEmailErrorMessage(this ContactFormPage page, string text) { Assert.IsTrue(page.ErrorMessagesForEmail.Displayed); StringAssert.Contains(text, page.ErrorMessagesForEmail.Text); }
public static void AssertProductErrorMessage(this ContactFormPage page, string text) { Assert.IsTrue(page.ErrorMessageForProductType.Displayed); StringAssert.Contains(text, page.ErrorMessageForProductType.Text); }
public static void AssertSuccessMessage(this ContactFormPage page, string text) { Assert.IsTrue(page.ThankYouMessage.Displayed); Assert.AreEqual(text, page.ThankYouMessage.Text); }