How to write a method with a parameter in Selenium 2?

400 Views Asked by At

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."));
    }
1

There are 1 best solutions below

4
On BEST ANSWER

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:

public AllProductPage chooseProduct(String productName) {
    //Click on product received in parameter
    driver.findElement(By.xpath("//div[contains(@class,'productcol')][descendant::*[contains(text(),'"+productName+"')]]//input[@class='wpsc_buy_button']")).click();
    //Expected: Product has been opened
    return new AllProductPage(driver);
}

Your test may look like this:

    @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("iPhone 5");
        onAllProductPage.buttonGoToCheckout();
        onAllProductPage.submitForm();
        System.out.println("Step 3");
        Assert.assertTrue(onAllProductPage.getMessage().contains("Oops, there is nothing in your cart."));
    }

Note that in this example the product is fixed in the test code, but it could be a variable as well.