Skip to content

Instantly share code, notes, and snippets.

@angiejones
Created November 12, 2020 00:37
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 angiejones/4d336485b47832b4ce8f321282974f61 to your computer and use it in GitHub Desktop.
Save angiejones/4d336485b47832b4ce8f321282974f61 to your computer and use it in GitHub Desktop.
Selects product options, adds to cart, goes to Cart page and verifies product is in cart
@Test
public void test_add_to_cart(){
productPage.setColor("Red");
productPage.setSize("M");
productPage.setQuanity(2);
productPage.addToCart();
productPage.goToCart();
assertTrue(cart.isProductInCart("TOKYO TALKIES"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment