<div class="searchCenter largeFont">
<b> 1 </b>
<a href="/mytwonky/search/?p=2&q=next&mt=1"> 2 </a>
<a href="/mytwonky/search/?p=3&q=next&mt=1"> 3 </a>
</div>
How would I get a count of all the child nodes of <div>, in the above case there are three children of <div>.
What command would I use in Selenium using CSS selectors?
I found the answer: I found the answer to my question and would like to mention below for future reference:
The above could be done by the following:
se.get_css_count("css=div#paginationContainer div[class='searchCenter largeFont']>*")
document.getElementById("myDiv").childNodes.length;– Jean-Charles Aug 26 '11 at 11:55