无法通过XPath在selenium webdriver中选择文本框?

时间:2015-06-15 10:52:23

标签: selenium xpath

我的HTML

<table border="2" style="background:gray">
<tbody>
<td class="std">
<input id="ActQ1Revenue" type="text" name="amount" disabled="disabled" maxlength="20" style="background:wheat">
</td>
</tr>
<tr>
<td class="atd">
<input id="ActAprRevenue" type="text" name="amount" maxlength="20">
</td>
</tr>
<tr>
<td class="atd">
<input id="ActMayRevenue" type="text" name="amount" maxlength="20">
</td>
</tbody>
</table>

我的XPath

//input[@type='text'][@disabled!='disabled']

我想选择未禁用的文本框,我使用上面的XPath,但这不知道怎么做?

1 个答案:

答案 0 :(得分:0)

更改表达式

//input[@type='text' and not(@disabled ='disabled')]