编写 Selenium Test 来测试文本换行?

发布于 2024-12-06 15:53:06 字数 212 浏览 1 评论 0原文

我正在尝试使用 selenium 2.0 为附加场景编写 selenium 测试。 测试场景

HTML代码如下

我需要验证文本是否换行。文本应该在第二个场景中换行

任何帮助将不胜感激。

谢谢, 萨希尔

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

§普罗旺斯的薰衣草 2024-12-13 15:53:06

恐怕它对浏览器的内部结构太深入了,所以用 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.

倾听心声的旋律 2024-12-13 15:53:06

可能应该尝试 url 编码/取消编码来查看该特定文本是否已编码?

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

笙痞 2024-12-13 15:53:06

您可以检查文本是否溢出。

public boolean isElementOverflowed(CoreLocator element) {
    return (boolean) coreDriver.executeScript("return arguments[0].scrollWidth > arguments[0].clientWidth",
            element.getWebElement());
}

并在您的代码中调用它。

You can check if the text is overflowed.

public boolean isElementOverflowed(CoreLocator element) {
    return (boolean) coreDriver.executeScript("return arguments[0].scrollWidth > arguments[0].clientWidth",
            element.getWebElement());
}

and call it in your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文