*我正在使用Selenium2服务器和PHPUnit来运行一些基本的单元测试,我试图点击此表中的输入字段:
<table id="items">
<tbody >
<tr><td>
<input type="text" data-type="string" value="" class="text">
</td></tr>
</tbody>
</table>
我的xpath代码如下所示:
$this->click("xpath=//table[@id='items']/input[@type='text']");
我得到的错误如下:
/*PHPUnit_Extensions_Selenium2TestCase_WebDriverException: Internal server error w
hile executing POST request at http://localhost:4444/wd/hub/session/2ca03fc2-89d
b-4a6f-b209-340f11d65182/click. Response: NULL*/
每次尝试执行xpath方法时都会出现此错误。谁知道为什么会这样?