0

JI 刚开始使用 Selenium 测试网站。但是,网站上有一个按钮,我无法同时使用链接和 xpath。URL 是http://hra.case.edu/info。如果您在名字输入框中键入类似 John,则网站将呈现一个表格,显示您的可能用户。我需要点击第一个按钮“这就是我”。

这是我的 Selenium 测试用例源代码

<tr>
    <td>open</td>
    <td>/</td>
    <td></td>
</tr>
<tr>
    <td>clickAndWait</td>
    <td>link=Get Started</td>
    <td></td>
</tr>

<tr>
    <td>keyPress</td>
    <td>name=searchFirstName</td>
    <td>John</td>
</tr>
<tr>
    <td>selectWindow</td>
    <td>name={&quot;$&quot;:{&quot;memLimit&quot;:2000,<br />&quot;autoFlush&quot;:true,<br />&quot;crossDomain&quot;:false,<br />&quot;includeProtos&quot;:false,<br />&quot;includeFunctions&quot;:false,<br />&quot;currentDomain&quot;:&quot;case.edu&quot;}}</td>
    <td></td>
</tr>
<tr>
    <td>clickAndWait</td>
    <td>//*[@id='select_user']/tr[1]/td[1]/a</td>
</tr>

It fails at the last step said [error] Element Xpath//*[@id'select_user']/tr[1]/td[1]/a not found

有人知道如何找到那个按钮吗?谢谢!ps 我可以使用萤火控制台来定位那个按钮

>>> $x(".//*[@id='select_user']/tr[1]/td[1]/a")
[a.btn /midlife/149]
4

2 回答 2

0

你只需要那样等待

command-waitForElementPresent

target-Xpath//*[@id'select_user']/tr[1]/td[1]/a

于 2013-10-11T09:44:41.423 回答
-1

试试下面的xpath

"//div[@id='content']//tbody[@id='select_user']/tr[1]//a"
于 2013-09-23T17:56:42.647 回答