我想找到一個頁面上的複選框元素:硒的java不能找到合適的元素
這是頁面的源代碼:
<tr>
<td class="tablecell" width="200" valign="top">Filter_list</td>
<td class="tablecell" width="360">
<div id="div_filterlist">
<table border="0">
<tr>
<td class="tablecell" width="160" valign="top"><b>Available Filters</b><br>
<ul id="unselected_ilters" class="unselected_filter">
<li itemID="test">
<input type="checkbox" value="test" onClick="toggleUnselected(this,'test')" onMouseOver="this.style.cursor='hand'"/>
<a href="#" onClick="document.filterform.name.value='test';document.filterform.submit();">test</a>
</li>
我的代碼不工作:
String xpathLocater = "//input[ @type=\"checkbox\" and @value=\" test\"]";
你的代碼不工作?有什麼異常? – drets
你能夠編輯頁面的HTML嗎? – Swagin9
我得到「無法找到元素:」 – Peter