gpt4 book ai didi

c# - 如果元素在表中的元素内有文本,则测试失败

转载 作者:行者123 更新时间:2023-11-30 21:44:03 24 4
gpt4 key购买 nike

你好这是我的第一个问题,我希望有人能帮助我:)

我想检查表中是否存在带文本的项目。如果存在,我希望测试失败。

internal static bool IsElementWithTextInCollection(ReadOnlyCollection<IWebElement> table, string customerFieldName)
{
foreach (var item in table)
{
if (item.Text.(customerFieldName))
{

}
}
return true;
}

最佳答案

您应该检查项目中的文本 Contains 是否为您的结果提供 false 并中断循环。

internal static bool IsElementWithTextInCollection(
ReadOnlyCollection<IWebElement> table, string customerFieldName)
{
bool result = true;
foreach (var item in table)
{
if (item.Text.Contains(customerFieldName))
{
result = false;
break;
}
}

return result;
}

关于c# - 如果元素在表中的元素内有文本,则测试失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41056830/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com