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

I have a webpage with footer as follows :-

<div id="footer" class="container_24 clearfix" align="center"> <span style="float: right;">Mar Inc. &copy; 2011</span> <span id="build_version_string" style="float: right;">ghq-master-2125-g239c5f3</span>

My aim is to get the value of "build_version_string" which in this case is "ghq-master-2125-g239c5f3". In my case, this is dynamic and I am not aware of the value before selenium test runtime.

I tried @selenium.get_value "id=build_version_string" , however it threw error :-

"ERROR: This element has no value; is it really a form field?"

It is not a form field. So is there a way to get that value ?

share|improve this question
not sure what language that is, but try a "get text" instead – prestomanifesto Sep 6 '11 at 14:58
I am using SeleniumRC exported to Ruby Unit. – Sabu Thaliyath Sep 6 '11 at 15:31
1  
@selenium.get_text worked !! Thanks a lot prestomanifesto.. – Sabu Thaliyath Sep 6 '11 at 15:35

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.