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"> Bicycle
<input id="tricycle-checkbox" type="checkbox" name="vehicle2" value="Tricycle" disabled=""> Tricycle
<input id="bike-checkbox" type="checkbox" name="vehicle3" value="Bike"> 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"> Hatchback
<input id="sedan-checkbox" type="checkbox" name="vehicle5" value="Sedan"> Sedan
<input id="van-checkbox" type="checkbox" name="vehicle6" value="Van"> Van
<input id="suv-checkbox" type="checkbox" name="vehicle7" value="SUV"> SUV
<input id="truck-checkbox" type="checkbox" name="vehicle8" value="Truck"> Truck
</div>
The IF loop criteria is not correct. Try this,