By locator :Can someone give suggestions to get this resolved

 By ihaveoption2wheeler = By.xpath("//div[@id='twoWheelVehicles']/input[@type='checkbox']");

 

Test Page has the test case:

@DataProvider

public Object[][] selectcheckbox()

{
    Object[][] data = ExcelUtil.getTestData(AppConstants.checkbox_select);

    return data;
}
@Test(priority=1,dataProvider="selectcheckbox")

public void clickoncheckbox(String ihave)

{
    dropdownpage.selectihaveoption(ihave);
}

Page contains the method where the by locator is defined

public void selectihaveoption(String checkboxoption)

    {
        elementutils.waitforElement(ihaveoption);

        elementutils.clickoncheckboxradiobutton(ihaveoption,checkboxoption);
    }

                       Utils:

public void clickoncheckboxradiobutton(By locator,String value)

    {

    List<WebElement> opts = driver.findElements(locator);

     int sizeofcheckbox =  opts.size();

     for(int i=0;i<opts.size();i++)

     {
         if(opts.equals(value))

         {
             opts.get(i).click();
         }
     }
     }

HTML :

<div id="twoWheelVehicles" class="col-md-6 col-xs-10 col-xs-offset-1">

            <input id="bicycle-checkbox" type="checkbox" name="vehicle1" value="Bicycle">&nbsp;Bicycle  

            <input id="tricycle-checkbox" type="checkbox" name="vehicle2" value="Tricycle" disabled="">&nbsp;Tricycle   

            <input id="bike-checkbox" type="checkbox" name="vehicle3" value="Bike">&nbsp;Bike 

<div id="fourWheelVehicles" class="col-md-6 col-xs-10 col-xs-offset-1">

            <input id="hatchback-checkbox" type="checkbox" name="vehicle4"  value="Hatchback">&nbsp;Hatchback       

            <input id="sedan-checkbox" type="checkbox" name="vehicle5" value="Sedan">&nbsp;Sedan
                <input id="van-checkbox" type="checkbox" name="vehicle6" value="Van">&nbsp;Van

            <input id="suv-checkbox" type="checkbox" name="vehicle7" value="SUV">&nbsp;SUV

            <input id="truck-checkbox" type="checkbox" name="vehicle8" value="Truck">&nbsp;Truck    

        </div>
1

There are 1 best solutions below

0
On

The IF loop criteria is not correct. Try this,

for(int i=0;i<opts.size();i++)

     {
         if(opts.get(i).gettext().equals(value))

         {
             opts.get(i).click();
         }
     }