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?