Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This doesn't make any sense to me. Here is the source code of the page element I'm trying to intereact with:

<li>
    <input type="checkbox" name="includeStudents" value="true" checked />
     <span style="cursor: pointer;"
          onclick="javascript:checkBoxSingleClick(document.userSearchForm.includeStudents);"
          ondblclick="javascript:userTypeDoubleClick(document.userSearchForm, document.userSearchForm.includeStudents);">
     <strong><u>S</u>tudent</strong>
       </span>
 </li>

When I try to find the element using By.name - I get an element not visible error, however, when I try to find the same element using By.xpath - everything works just fine. Here is the code from my test.

wait.until(ExpectedConditions.visibilityOfElementLocated(By.name("includeStudents")));
    driver.findElement(By.name("includeStudents")).click();
    //driver.findElement(By.xpath("//*[@id='ed-userSearchCheckboxUserTypeFilter']/li[2]/input")).click();

I added the wait to confirm that it's not just a timing issue. I get a timeout error waiting for the visibility of the element when using by.name

What am I missing here?

share|improve this question
Are you sure this was the only element on the page with this name? Can you try doing the following for a more proper detail? – aimbire Feb 15 at 16:37
driver.findElement(By.id("ed-userSearchCheckboxUserTypeFilter")).findElement(By.‌​name("includeStudents")).click(); – aimbire Feb 15 at 16:38
Interesting - I tried your line and it works - TY. I'm curious now - based on your first comment I am assuming the thought is there's another element using that name (was my initial thought as well). But a search on the page source code didn't bring one up. Also, the "wait" times out indicating (to me) that no element with that name is located - even though the page is fully loaded – Aces 'n Eights Feb 15 at 19:32
Well that's odd. Because yes, indeed my line of thought was that. You could always do a findElements() on that locator and get a count of it, not sure although if there are issues on the <li> element. – aimbire Feb 16 at 21:54
You can always join #selenium on freenode (IRC), and try to get a better answer from the guys over there too. – aimbire Feb 16 at 21:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.