Testing this site: http://store.demoqa.com/
My test verify that be can add and remove the product from cart.
I wrote a method without a parameter that looks like this:
public AllProductPage chooseProduct() {
//Click on product iPhone5
driver.findElement(By.className("wpsc_buy_button")).click();
//Expected: Product "iPhone5" has been opened
return new AllProductPage(driver);
}
I need to write a method with a parameter and choose the product in the test and not in the code that I wrote.
@Test
public void verifyThatBeCanAddAndRemoveTheProductFromCart() throws InterruptedException {
ImplicitWait(driver);
HomePage onHomePage = new HomePage(driver);
System.out.println("Step 1");
AllProductPage onAllProductPage = onHomePage.clickOnAllProduct();
System.out.println("Step 2");
onAllProductPage.chooseProduct();
onAllProductPage.buttonGoToCheckout();
onAllProductPage.submitForm();
System.out.println("Step 3");
Assert.assertTrue(onAllProductPage.getMessage().contains("Oops, there is nothing in your cart."));
}
I'm don't know what kind of data you'd like to pass to the function, but you can try to pass a String containing the product name, like the following:
Your test may look like this:
Note that in this example the product is fixed in the test code, but it could be a variable as well.