WebAii/ArtOfTest - 测试

的内容标签?

发布于 2024-11-05 12:14:54 字数 180 浏览 1 评论 0原文

我正在使用免费版本的 WebAii/ArtOfTest 编写一些自动化测试。我正在尝试抓住一个

标签,以便我可以验证内容。我看到大多数标记类型的类(例如 HtmlDiv、HtmlSpan 等),但没有看到

的类。标签。

我是否缺少一门课程,或者是否有其他方法可以获取

标记并验证其内容?

I'm writing some automation tests using the free version of WebAii/ArtOfTest. I'm trying to grab a <p> tag so I can verify the contents. I see classes for most tag types (eg. HtmlDiv, HtmlSpan, etc), but don't see one for <p> tags.

Is there a class I'm missing or is there another way to grab the <p> tag and verify it's contents?

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

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

发布评论

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

评论(1

淡淡離愁欲言轉身 2024-11-12 12:14:54

他们的关键问题是你的<<有什么特征? p>我们用标签来定位它吗?它有 id 属性吗?它是 < 中包含的第一个吗?分区>有一个 id 吗?

以下是验证文本内容的一种可能方法的快速示例:

        HtmlControl p = Find.ByExpression<HtmlControl>("id=desc");
        Assert.IsTrue(p.BaseElement.TextContent.Contains("Ipsum Lorem Facto"));

也请随时将所有框架问题提交到我们的 Telerik 测试框架表单,网址为 http://www.telerik.com/automated-testing-tools/community/forums/webui -test-studio-developer-edition/webaii-automation-framework.aspx 我们支持人们闲逛并回答此类问题。

科迪,
Telerik 支持官员

They key question is what characteristics of your < p > tag do we use to locate it? Does it have an id attribute? Is it the first one contained in a < div > that has an id?

Here's a quick sample of one possible way of verifying text content:

        HtmlControl p = Find.ByExpression<HtmlControl>("id=desc");
        Assert.IsTrue(p.BaseElement.TextContent.Contains("Ipsum Lorem Facto"));

Also feel free to bring all your framework questions over to our Telerik Testing Framework form at http://www.telerik.com/automated-testing-tools/community/forums/webui-test-studio-developer-edition/webaii-automation-framework.aspx where us support people hang out and answer these sorts of questions.

Cody,
Telerik Support Officer

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