CrazyEngineers
  • How To Check CheckBox From Multiple CheckBoxes Using DataProvider In Selenium WebDriver With Java?

    Updated: Oct 26, 2024
    Views: 1.8K
    Problem : How To Check CheckBox From Multiple CheckBoxes On WebPage Using Data Driven FrameWork(Excel) In Selenium WebDriver with JAVA.

    Scenario : I am currently automating a form where I am passing all input from excel. It includes textboxes ,checkboxes datepicker etc.
    Form includes total 15 checkboxes. Now I want my script to check 1 checkbox which is mentioned in excel. I am using TestNG and Apache POI for it.
    Here is what I have done to get it :

    public void EventCreation1(String EventName, String EventTagLine,String EventOrganization,String City,String State,String Country, String EventCategory ,String EventDescription,String Name,String EmailID,String Contact)
     {
     
     
     driver.get("WEBPAGE URL");
     
     driver.findElement(By.xpath(".//*[@id='eventName']")).sendKeys(EventName);
     driver.findElement(By.xpath(".//*[@id='eventTagLine']")).sendKeys(EventTagLine);
     driver.findElement(By.xpath(".//*[@id='organizerName']")).sendKeys(EventOrganization);
     driver.findElement(By.xpath(".//*[@id='eventCity']")).sendKeys(City);
     driver.findElement(By.xpath(".//*[@id='eventState']")).sendKeys(State);
     driver.findElement(By.xpath(".//*[@id='eventCountry']")).sendKeys(Country);
    //For Category
    List<WebElement> Checkbox = driver.findElements(By.xpath("//input[@type='checkbox']"));
     
     for(int i=0; i<Checkbox.size();i++ )
     
     {
     WebElement El =Checkbox.get(i);
     String id =El.getAttribute("value");
     if(id.equals(EventCategory))
     {
     El.click();
     
     }
     }

    Here // String EventCategory is the Checkbox option I am passing as parameter from excel.

    Could you please help in this what is wrong here? I am not able to check any checkbox with this.

    HTML Tag:
    <div class="section colm colm9">
        <div class="frm-row">
            <div class="section colm colm4">
                <div class="option-group">
                    <label class="option option-blue block">
                        <input type="checkbox" name="eventType[]" value="TechFest">
                        <span class="checkbox"></span> TechFest
                    </label>
                    <label class="option option-blue block spacer-t10">
                        <input type="checkbox" name="eventType[]" value="Cultural Fest">
                        <span class="checkbox"></span> Cultural Fest
                    </label>
                    <label class="option option-blue block spacer-t10">
                        <input type="checkbox" name="eventType[]" value="Management Fest">
                        <span class="checkbox"></span> Management Fest
                    </label>
                    <label class="option option-blue block spacer-t10">
                        <input type="checkbox" name="eventType[]" value="Sports Fest">
                        <span class="checkbox"></span> Sports Fest
                    </label>
                    <label class="option option-blue block spacer-t10">
                        <input type="checkbox" name="eventType[]" value="Workshop">
                        <span class="checkbox"></span> Workshop
                    </label>
                </div><!-- end .option-group section -->
            </div>
        </div>
    </div>
    0
    Replies
Howdy guest!
Dear guest, you must be logged-in to participate on CrazyEngineers. We would love to have you as a member of our community. Consider creating an account or login.
Replies
  • Ankita Katdare

    AdministratorJan 2, 2017

    Tagging #-Link-Snipped-# #-Link-Snipped-# Please tag anyone who may be familiar with the issue.
    Are you sure? This action cannot be undone.
    Cancel
  • simplycoder

    MemberJan 5, 2017

    I do not have selenium set up with Java here, but just to clarify,
    • Are you getting the correct number of check boxes in the list List<WebElement> Checkbox
    • The case of String id =El.getAttribute("value"); is same as the one passed in EventCategory.
    Are you sure? This action cannot be undone.
    Cancel
  • Radhika Deshpande

    MemberJan 5, 2017

    #-Link-Snipped-# Thnaks for looking into it.
    I am getting correct number of checkboxes in List .i.e 15 .
    But problem is in Web element El I am getting all checkboxes values and then with
    if(id.equals(EventCategory) it compares all values with one value in 'EventCategory' and fails.
    Do I need iterate a list of WebElements and then compare it with EventCategory and then perform action of Click() ?
    Are you sure? This action cannot be undone.
    Cancel
  • simplycoder

    MemberJan 6, 2017

    Radhika
    #-Link-Snipped-# Thnaks for looking into it.
    I am getting correct number of checkboxes in List .i.e 15 .
    But problem is in Web element El I am getting all checkboxes values and then with
    if(id.equals(EventCategory) it compares all values with one value in 'EventCategory' and fails.
    Do I need iterate a list of WebElements and then compare it with EventCategory and then perform action of Click() ?
    I think you are correct in a way.
    I would try this if I were you
    1. Get the list of check boxes (You already done that)
    2. Iterate through the list of check boxes with value attribute
    3. try something like this
    String id = Checkbox.get(i).getAttribute("value");
     if(id.equals(EventCategory))
     {
    Checkbox.get(i).click();
    // break if its only going to be one value.
     }
    
    Does this give you the correct output?
    The code above needs to be optimized ( Calling .get(i) twice...).

    If not let me know.
    Are you sure? This action cannot be undone.
    Cancel
  • Saandeep Sreerambatla

    MemberJan 10, 2017

    I think what gave above is correct, can you also perform trim as well. ( I think you might have done it already though)..
    Are you sure? This action cannot be undone.
    Cancel
  • Radhika Deshpande

    MemberJan 10, 2017

    simplycoder
    String id = Checkbox.get(i).getAttribute("value"); if(id.equals(EventCategory)) { Checkbox.get(i).click(); // break if its only going to be one value. }
    #-Link-Snipped-# I tried this piece of code but it is not working. Do I need to use Iterator() method or ListIterator() method in java to iterate through the list of check boxes with value attribute?


    Saandeep Sreerambatla
    I think what gave above is correct, can you also perform trim as well. ( I think you might have done it already though)..
    Thanks #-Link-Snipped-# for looking into it. I have not used trim() function as of now. I am JAVA beginner, thus not sure of what all function should be suitable for which condition. I will try in my code and let you know.
    Are you sure? This action cannot be undone.
    Cancel
  • Radhika Deshpande

    MemberJan 10, 2017

    Hello ,

    I tried below piece and it worked :

    List<WebElement> Checkbox = driver.findElements(By.xpath("//input[@type='checkbox']"));
            int i=0;
            while(i<Checkbox.size())
            {
                WebElement El =Checkbox.get(i);   
                String id =El.getAttribute("value");
                driver.manage().timeouts().implicitlyWait(5000, TimeUnit.SECONDS);
                if(id.equals(EventCategory))
                {
                    Checkbox.get(i).click();
                    break;
                }
                i++;
                }//End While
    Are you sure? This action cannot be undone.
    Cancel
  • Saandeep Sreerambatla

    MemberJan 11, 2017

    So the wait statement did the trick!
    So always use it whenever something doesnt work, it helps. And Instead of using something like as implicit wait create something for explicit wait , I mean a user defined wait function to wait for appropriate times.
    Are you sure? This action cannot be undone.
    Cancel
  • Radhika Deshpande

    MemberJan 11, 2017

    Saandeep Sreerambatla
    So the wait statement did the trick!
    So always use it whenever something doesnt work, it helps. And Instead of using something like as implicit wait create something for explicit wait , I mean a user defined wait function to wait for appropriate times.
    Thanks a lot, i will make a note of it onwards 😀
    Are you sure? This action cannot be undone.
    Cancel
  • simplycoder

    MemberJan 13, 2017

    Saandeep Sreerambatla
    So the wait statement did the trick!
    So always use it whenever something doesnt work, it helps. And Instead of using something like as implicit wait create something for explicit wait , I mean a user defined wait function to wait for appropriate times.
    Issue with this code, is the hard-coded 5000 seconds.
    Ideally it would wait till the element is loaded.
    In this way you can maintain log of loading times of all controls on UI.
    But this doesn't seem to be with the context of the question asked.
    Are you sure? This action cannot be undone.
    Cancel
  • Amar Khavashi

    MemberSep 17, 2018

    Hi radhika, nice tutorial.. I m facing issues in selecting values from excel file to select drop down  values , please can you show me complete detail example

    Are you sure? This action cannot be undone.
    Cancel
  • Radhika Deshpande

    MemberOct 1, 2018

    Hi Amar, Where exactly the  problem you are facing? I am happy to help if you put your sample code. 

    Are you sure? This action cannot be undone.
    Cancel
Home Channels Search Login Register