Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<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']>*")
share|improve this question
could someone please help? – Sunny Aug 26 '11 at 11:28
Perhaps off-topic, but in Javascript : document.getElementById("myDiv").childNodes.length; – Jean-Charles Aug 26 '11 at 11:55
In which case, you should post an answer to your own question and accept it yourself. That way, google will see the answer, plus you might get a few upvotes from it. :) – Madara Uchiha Aug 26 '11 at 12:41
have you tried storeCssCount() – lAH2iV Sep 2 '11 at 7:43
These are also helpful if one was using older version of Selenium w/o the CSS count method available: stackoverflow.com/questions/1573170/… and eviltester.com/index.php/2010/03/13/… – David Jul 25 '12 at 0:50

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.