编写 Selenium Test 来测试文本换行?
我正在尝试使用 selenium 2.0 为附加场景编写 selenium 测试。
HTML代码如下
我需要验证文本是否换行。文本应该在第二个场景中换行
任何帮助将不胜感激。
谢谢, 萨希尔
I am trying to write the selenium test using selenium 2.0 for the attached 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
恐怕它对浏览器的内部结构太深入了,所以用 Selenium 是不可能的。也许您可以检查高度流动包装元素(div)是否超过行高,但对我来说它看起来很脆弱。
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.
可能应该尝试 url 编码/取消编码来查看该特定文本是否已编码?
May be should try the url encode/uncode to see if that particular text is encoded or not?
您可以检查文本是否溢出。
并在您的代码中调用它。
You can check if the text is overflowed.
and call it in your code.