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

I am trying to write the selenium test using selenium 2.0 for the attached scenario. Test Scenario

HTML code is as follows

<div width="100px" style = "background-color:blue"> This%is%Normal%Text%on%page%without%dynamic%view%and%not%width%set. </div>

I need to verify whether text is wrapping or not. Text should wrap in the 2nd scenario

Any help would be appreciated.

Thanks, Sahil

share|improve this question

2 Answers

May be should try the url encode/uncode to see if that particular text is encoded or not?

share|improve this answer

I'm afraid it goes too deep to browser's internals so it is not possible with Selenium. Maybe you can check the height ow wrapping element (div) if it exceeds height of line, but it looks fragile to me.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.