如何使用 Watin 检查元素的显示样式?
我想用 watin 做以下事情。也许你们知道做到这一点的最佳方法。我一直无法找到任何关于 watin 能力的完整文档,我什至检查了主页,但运气不佳。
我想...
- 检查 div 的可见性/显示值。
- 检查元素的类名。
例如:
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...
- Check the visibility/display value of a div.
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查元素的类名。
检查元素的类名。
Check the class name of an element.
Check the class name of an element.