繁体   English   中英

如何使用 selenium webdriver 在 JQGrid 中选择单选按钮

[英]How to select Radio button in JQGrid using selenium webdriver

我正在尝试选择 Jqgrid 表中的单选按钮。 但我无法找到它的 XPath。

 `table id="list" class="ui-jqgrid-btable" tabindex="0" role="grid" aria-
  multiselectable="false" aria-labelledby="gbox_list" style="width: 940px;
  display: table;" cellspacing="0" cellpadding="0" border="0"> 
  <tbody>
  <tr class="jqgfirstrow" role="row" style="height:auto">
  <td role="gridcell" style="height:0px;width:20px;"></td>
  <td role="gridcell" style="height:0px;width:150px;display:none;"></td>
  </tr>
  <tr id="1" class="ui-widget-content jqgrow ui-row-ltr ui-state-highlight 
  gridRowSelect" role="row" tabindex="0" style="color: rgb(255, 0, 0);" 
  aria-selected="true">
  <td role="gridcell" style="text-align:center;" title="" aria-
  describedby="list_myradio">
  <input id="gridRadio" class="gridRadio" name="radio_list" type="radio">
  </td>`

我建议通过它的唯一 id ( driver.findElement(By.id("gridRadio"))来选择它。 但是,如果您明确想要使用 XPath,请使用以下表达式之一:

//input[@id='gridRadio']

或者

//table[@id='list']/tbody/tr[@id='1']/td/input[@type='radio']

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM