点击建议箱,webdriver

时间:2013-04-03 07:05:24

标签: java selenium webdriver

我正在使用Selenium 2.0在我的应用程序上测试GUI。

当我在输入字段中输入数据时,建议框会出现,我需要点击建议框来验证输入。

图片在这里:Image

我的HTML代码(输入):

<table class="supplier" cellspacing="1" width="100%">
<tbody>
<tr>
<td><span id="supplier:supplierOps" class="ui-autocomplete">
<input id="supplier:supplierOps_input" name="supplier:supplierOps_input" type="text" class="ui-autocomplete-input ui-inputfield ui-widget ui-state-default ui-corner-all" autocomplete="off" value="" size="10" role="textbox" aria-disabled="false" aria-readonly="false" aria-multiline="false">
</span></td>
<td>...</td>
</tr>
</tbody>
</table>

我的HTML代码(suggestBox):

<table class="ui-autocomplete-items ui-autocomplete-table ui-widget-content ui-widget ui-corner-all ui-helper-reset">
<tbody>
<tr class="ui-autocomplete-item ui-autocomplete-row ui-corner-all ui-state-highlight" data-item-value="1" data-item-label="OPS1">
<td>OPS1 - Supplier1</td>
</tr>
</tbody>
</table>

我的硒代码:

// supplier ops, i find and type data into the input
WebElement eSupplier = driver.findElement(By.id("supplier:supplierOps_input"));
eSupplier.sendKeys("OPS1");
sleep(5); // wait the suggestbox

// i find the suggestbox
WebElement eSupplierSuggest = driver.findElement(By.xpath("//div[@id='supplier:supplierOps_panel']/table/tbody/tr"));
eSupplierSuggest.click();
sleep(5); // wait the refresh for the next field supplierAddress

我的xpath,一切似乎都没问题。

所以,问题是: 我需要捕获/选择什么元素(td,tr,table,...)以及我需要使用什么方法(driver.click(),sendKeys(),...)来验证suggestBox?

编辑:

建议框在宣布验证时没有焦点。所以我正在寻找焦点并尝试sendKeys(Keys_ENTER)。 Set focus on WebElement?

EDIT2:

一些新闻人员,我将尝试用Arquillian Graphene解决它。它是一个框架,强制测试人员编写支持Ajax和可重用的测试和测试抽象,

链接: Introduction to Graphene - Graphene 2.0.0.Alpha3 Released    - JBoss Community Graphene2    - Jquery Selector

2 个答案:

答案 0 :(得分:0)

尝试使用cssSelector进行自动提示点击,如下所示,如果您仍然面临此问题,请告诉我。

 // supplier ops, i find and type data into the input
    WebElement eSupplier = driver.findElement(By.id("supplier:supplierOps_input"));
    eSupplier.sendKeys("OPS1");
    sleep(5); // wait the suggestbox

    // i find the suggestbox
    WebElement eSupplierSuggest = driver.findElement(By.cssSelector("css path of that specific value in the auto suggestion box"));
    eSupplierSuggest.click();
    sleep(5); // wait the refresh for the next field supplierAddress

答案 1 :(得分:0)

您可以找到建议框,然后提取建议框的文本,而不是单击建议框。断言它包含您输入的文字。