如何断言元素包含FluentAutomation中的指定文本?

时间:2016-08-04 12:24:30

标签: contains assert fluentautomation

是否可以使用FluentAutomation框架检查文本是否包含在元素的文本中?

文档中提供的示例用于匹配确切的文本 http://fluent.stirno.com/docs/#asserts-text

I.Assert.Text("FluentAutomation").In("header"); 

如何检查元素是否包含文本?

例:       标题文本是“随机文本我不需要Mytext等”。

我想使用FluentAutomation断言标题包含“MyText”

1 个答案:

答案 0 :(得分:2)

我使用了Assert.True http://fluent.stirno.com/docs/#asserts-true 并评估我是否找到包含所需字符串的元素:

I.Assert.True(() => I.Find(MyElement).Text().Contains("teststring"));