Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created January 24, 2016 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/acbcc9012286b86353c8 to your computer and use it in GitHub Desktop.
Save angelovstanton/acbcc9012286b86353c8 to your computer and use it in GitHub Desktop.
public static class PlaceOrderPageAsserter
{
public static void AssertPromoCodeLabel(this PlaceOrderPage page, string promoCode)
{
if (!string.IsNullOrEmpty(promoCode) && page.IsPromoCodePurchase)
{
Assert.AreEqual<string>(page.PromotionalCode.Text, promoCode);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment