Selenium Webdriver java:点击一个复选框

时间:2017-11-11 09:12:38

标签: java xpath selenium-webdriver checkbox click

我有一个表格,其HTML代码如下所示。我想点击包含"基本用户"的行中的复选框。 (即在tr [5]中)。我无法点击复选框。我正在使用firefox浏览器和Selenium Webdriver(Java)

<div class="ui-jqgrid-bdiv" style="height: 340px; width: 440px;">
<div style="position:relative;">
<div></div>
<table id="s_4_l" class="ui-jqgrid-btable" border="0" cellspacing="0" cellpadding="0" tabindex="0" role="grid" aria-multiselectable="true" aria-labelledby="" style="width: 439px;" summary="Responsibilities" datatable="1">
<tbody>
<tr class="jqgfirstrow" style="height:auto" role="row">
<tr id="1" class="ui-widget-content jqgrow ui-row-ltr" tabindex="-1" role="row" style="height: 32px;">
<tr id="2" class="ui-widget-content jqgrow ui-row-ltr" tabindex="-1" role="row" style="height: 32px;">
<tr id="3" class="ui-widget-content jqgrow ui-row-ltr" tabindex="-1" role="row" style="height: 32px;">
<tr id="4" class="ui-widget-content jqgrow ui-row-ltr" tabindex="-1" role="row" style="height: 32px;" aria-selected="false">
<tr id="5" class="ui-widget-content jqgrow ui-row-ltr ui-state-highlight selected-row ui-state-hover" tabindex="-1" role="row" style="height: 32px;" aria-selected="true">
<td aria-describedby="s_4_l_cb" style="text-align:center;display:none;" role="gridcell">
<input id="jqg_s_4_l_5" class="cbox" type="checkbox" role="checkbox">
</td>
<td id="5_s_4_l_SSA_Primary_Field" class="edit-cell ui-state-highlight" title="Unchecked" style="text-align:center;" role="gridcell" aria-labelledby="s_4_l_SSA_Primary_Field s_4_l_altCheckBox" tabindex="0">
<span tabindex="-1">
<input id="5_SSA_Primary_Field" class="customelement siebui-ctrl-checkbox siebui-align-center siebui-input-align-center s_4_2_82_0" type="checkbox" aria-checked="false" value="N" tabindex="0" role="checkbox" name="SSA_Primary_Field" maxlength="1" aria-labelledby="5_s_4_l_Name s_4_l_SSA_Primary_Field s_4_l_altCheckBox">
</span>
</td>
<td id="5_s_4_l_Name" title="Base User" style="text-align:left;" role="gridcell" aria-labelledby="s_4_l_Name">Base User</td>
<td id="5_s_4_l_Organization" title="Canada" style="text-align:left;" role="gridcell" aria-labelledby="s_4_l_Organization">Canada</td>
</tr>
<tr id="6" class="ui-widget-content jqgrow ui-row-ltr" tabindex="-1" role="row" style="height: 32px;">
<td aria-describedby="s_4_l_cb" style="text-align:center;display:none;" role="gridcell">
<td id="6_s_4_l_SSA_Primary_Field" title="Checked" style="text-align:center;" role="gridcell" aria-labelledby="s_4_l_SSA_Primary_Field s_4_l_altCheckBox">
<span class="siebui-icon-checkbox-checked">
<img hspace="0" border="0" space="0" title="Selected" alt="Selected" src="XYZ.com/images/check_d.gif">
</span>
<span style="display:none;">Y</span>
</td>
<td id="6_s_4_l_Name" title="Product Administrator" style="text-align:left;" role="gridcell" aria-labelledby="s_4_l_Name">Product Administrator</td>
<td id="6_s_4_l_Organization" title="Canada" style="text-align:left;" role="gridcell" aria-labelledby="s_4_l_Organization">Canada</td>
</tr>
<tr id="7" class="ui-widget-content jqgrow ui-row-ltr" tabindex="-1" role="row" style="height: 32px;">
</tbody>
</table>

此表包含7行,第一列每行都有一个复选框。在任何给定时间只有一行具有CHECKED / TICKED复选框,这里是第6行。对于其他行,不显示该复选框。只有当您单击行的第一个单元格区域内的某个位置时,才会显示该行的复选框。然后你可以勾选那个复选框。因此,我点击了第5行的第一个单元格,现在显示了复选框(如下面的代码所示)。

如何点击第5行的此复选框? 我的代码如下,第三行是我试图点击复选框,但它没有点击。

WebElement primaryCell = driver.findElement(By.xpath("/html/body/div[9]/div[2]/div/div/div/div[3]/form/div[1]/div/div/div[3]/div[3]/div/table/tbody/tr/td[contains(text(),'Base User')]/preceding-sibling::td[@title='Unchecked']"));
primaryCell.click();
primaryCell.findElement(By.xpath("//span/input")).click();

请帮助,谢谢!

请注意,tagnames-table,tr,td的@id不是静态的并且会不断变化。 我已尝试使用某些现有帖子中提供的解决方案,但我无法解决我的问题。

1 个答案:

答案 0 :(得分:0)

尝试以下代码,它使用更简单的xpath表达式 如果你点击单元格,那么你必须等到页面上的复选框显示并且是可以阻止的,它不会立即发生,第一次单击会激活一些javascript,这使得复选框可见且可点击,它必须花费一些时间,通常是几次十几毫秒,但如果网络连接或服务器或计算机或所有这些都很慢,那么有时可能需要几秒钟甚至十几秒钟。:

String cell = "//table[@summary='Responsibilities']//tr[ contains( ., 'Base User' )]/td[2]";

String checkbox = cell + "//input";

driver.findElement( By.xpath( cell ) ).click();

WebDriverWait wait = new WebDriverWait( driver, 10 );

wait.until( ExpectedConditions.elementToBeClickabe( By.xpath( checkbox ) ) ).click();