您好,我需要验证我要点击的商品是否有美元符号并且没有缺货。所以我使用了这种方法。如果列表中的第一项同时满足条件,则此方法可以正常工作,但如果第一项没有美元符号,则不会转到第二项并单击它,而是失败. 由于我是编程新手,我不知道我是否在代码中犯了任何错误。我该如何纠正这个?谢谢。
代码:
ReadOnlyCollection<IWebElement> listOfItems = driver.FindElements(By.CssSelector("ul[class='shelf-list tap-list search']>li"));
foreach (IWebElement item in listOfItems)
{
//To check if item is not sold out get the class attribute of item and check if empty
string className = item.GetAttribute("class");
Console.WriteLine("Classname:" + " " + className);
if (className.Equals(""))
{
//Item is available and now get text and check if it has $ sign
IWebElement itemWithDollarSign = driver.FindElement(By.CssSelector("div[class='item-preview-text']>div[class='price']"));
string ItemToChoose = itemWithDollarSign.Text;
Console.WriteLine("Text:" + " " + ItemToChoose);
if (ItemToChoose.Contains("$"))
{
//Choose the item that satifies both conditions
itemWithDollarSign.Click();
break;
}
}
}
案例 1 输出:如果项目同时满足两个条件
Classname:
text: $189
// 显示类名是空的,它进入了循环。
案例 2 输出:如果第一项没有 $
Classname:
text: Prices varies
Classname:
text: Prices varies
Classname:
text: Prices varies...
不断重复页面上的 30 个项目,而不是转到第二个项目。