<h5 _ngcontent-c2="" class="card-title">Payment Mode </h5>
<!---->
<div _ngcontent-c2="">
<div _ngcontent-c2="" class="form-group">
<input _ngcontent-c2="" name="paymentmode" type="radio" style="">
<b _ngcontent-c2="">Credit Card</b>
</div>
</div>
<div _ngcontent-c2="">
<div _ngcontent-c2="" class="form-group">
<input _ngcontent-c2="" name="paymentmode" type="radio">
<b _ngcontent-c2="">Debit Card</b>
</div>
</div>
<div _ngcontent-c2="">
<div _ngcontent-c2="" class="form-group">
<input _ngcontent-c2="" name="paymentmode" type="radio">
<b _ngcontent-c2="">Net Banking</b>
</div>
</div>
<div _ngcontent-c2="">
<div _ngcontent-c2="" class="form-group">
<input _ngcontent-c2="" name="paymentmode" type="radio">
<b _ngcontent-c2="">UPI</b>
</div>
</div>
对于上述HTML,我正在尝试根据单选按钮的值选择单选按钮。我正在使用量角器nuget软件包和硒web驱动器。
IList<NgWebElement> oCheckBox = ngDriver.FindElements(By.XPath("//input[@name='paymentmode']"));
int Size = oCheckBox.Count;
for (int i = 0; i < Size; i++)
{
String Value = oCheckBox.ElementAt(i).GetAttribute("value");
if (Value.Equals("Net Banking"))
{
oCheckBox.ElementAt(i).Click();
break;
}
}
但是IList<NgWebElement>
不包含ElementAt
的定义。
是否有任何方法可以根据付款方式选择单选按钮?
使用xpath://input [@name ='paymentmode']/paster :: b [1]
希望以下代码会有所帮助:
IList<NgWebElement> oCheckBox = ngDriver.FindElements(By.XPath("//input[@name='paymentmode']/following::b[1]"));
int Size = oCheckBox.Count;
for (int i = 0; i < Size; i++)
{
String Value = oCheckBox.ElementAt(i).getText();
if (Value.Equals("Net Banking"))
{
oCheckBox.ElementAt(i).Click();
break;
}
}
您可以使用XPath通过包含的文本" Net Banking"
查找"广播"按钮//input[@name='paymentmode']/following::b[.='Net Banking'][1]
我会将其放在方法中,并传递您要寻找的值以使其更灵活。
谢谢@jeffc和@sudha velan。在添加了linq(使用System.linq;)并进行更改并现在正常工作之后。
IList<NgWebElement> Rbtn = ngDriver.FindElements(By.XPath("//input[@name='paymentmode']"));
IList<NgWebElement> RbtnValue = ngDriver.FindElements(By.XPath("//input[@name='paymentmode']/following::b[1]"));
int Size = Rbtn.Count;
for (int i = 0; i < Size; i++)
{
String Value = RbtnValue.ElementAt(i).Text;
if (Value.Equals("UPI"))
{
Rbtn.ElementAt(i).Click();
break;
}
}
这是xpath,几乎等同于@jeffc。但这将确保即使在input
和b
之间添加了一些标签。
//b[normalize-space(.)='Net Banking']/ancestor::div[@class='form-group']//input[@name='paymentmode' and @type='radio']