如何使用 Watin 检查元素的显示样式?

发布于 2024-12-21 14:54:46 字数 374 浏览 0 评论 0原文

我想用 watin 做以下事情。也许你们知道做到这一点的最佳方法。我一直无法找到任何关于 watin 能力的完整文档,我什至检查了主页,但运气不佳。

我想...

  1. 检查 div 的可见性/显示值。
  2. 检查元素的类名。

例如:

Span this_span = Span(Find.ByText("Loading..."));

if (this_span.Visibility=="True")
{
}

if (this_span.Class.Value=="classname")
{
}

感谢任何帮助!

I'd like to do the following with watin. Maybe you guys know the best ways to go about doing this. I've been unable to find any thorough documentation on watin's power, I've even checked the homesite with little luck.

I'd like to...

  1. Check the visibility/display value of a div.
  2. Check the class name of an element.

eg:

Span this_span = Span(Find.ByText("Loading..."));

if (this_span.Visibility=="True")
{
}

and

if (this_span.Class.Value=="classname")
{
}

I appreciate any help!

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

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

发布评论

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

评论(2

草莓味的萝莉 2024-12-28 14:54:46
if (this_span.Style.Display != "none")
{
}
if (this_span.Style.Display != "none")
{
}
以歌曲疗慰 2024-12-28 14:54:46

检查元素的类名。

if (this_span.ClassName=="classname")
{

}

检查元素的类名。

if (this_span.Style.GetAttributeValue("display")!="none")
{

}

Check the class name of an element.

if (this_span.ClassName=="classname")
{

}

Check the class name of an element.

if (this_span.Style.GetAttributeValue("display")!="none")
{

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