如何断言元素包含 FluentAutomation 中的指定文本?
How do I assert an element contains the specified text in FluentAutomation?
是否可以使用 FluentAutomation 框架检查文本是否包含在元素的文本中?
文档中提供的示例用于匹配精确文本
http://fluent.stirno.com/docs/#asserts-text
I.Assert.Text("FluentAutomation").In("header");
如何检查元素是否包含文本?
例如:
header 文本是 "Random text I don't need Mytext and etc."
我想使用 FluentAutomation
断言 header 包含 "MyText"
我用了Assert.True
http://fluent.stirno.com/docs/#asserts-true
并评估我是否找到包含所需字符串的元素:
I.Assert.True(() => I.Find(MyElement).Text().Contains("teststring"));
是否可以使用 FluentAutomation 框架检查文本是否包含在元素的文本中?
文档中提供的示例用于匹配精确文本 http://fluent.stirno.com/docs/#asserts-text
I.Assert.Text("FluentAutomation").In("header");
如何检查元素是否包含文本?
例如: header 文本是 "Random text I don't need Mytext and etc."
我想使用 FluentAutomation
断言 header 包含 "MyText"我用了Assert.True
http://fluent.stirno.com/docs/#asserts-true
并评估我是否找到包含所需字符串的元素:
I.Assert.True(() => I.Find(MyElement).Text().Contains("teststring"));