1
Jqgridテーブルでラジオボタンを選択しようとしています。しかし、私はXPathを見つけることができません。セレンのwebdriverを使用してJQGridのラジオボタンを選択する方法
`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で*要素を特定しよう代わりの使用 'XPah'することができます:'ドライバ.findElement(By.id( "elementId")) '。 'elementId'は' gridRadio'になります。 [ドキュメント](http://www.seleniumhq.org/docs/03_webdriver.jsp)を参照してください。 – Oleg