Selenium Apply按钮无法在组合框上工作?

时间:2016-07-04 13:31:50

标签: java selenium selenium-webdriver selenium-ide

我的申请按钮有问题。我有组合框过滤器,一切都很好,它是在squares之间切换。但是当它假设要应用时,不知何故它只是继续,因为它没有选择任何东西和测试完成成功,但没有我需要的过滤。

有人可以检查我的代码并使用检查器错误。也许我错过了什么?

我的Java代码:

if (type.equals("")) {

elementList = driver.findElements(By.xpath("//div[@id='" + id + "_menu']//a[@class='FIText']"));

    if (elementList.size() > 0) {

        if (driver.findElements(By.xpath("//div[@id='" + id + "_menu']//div[@class='CFApplyButtonContainer']//button[@class='tab-button']//span[@class='label'][text()='Apply']/..")).size() > 0) {

            type = "multi_checkbox_with_apply";
        }else {
            type = "multi_checkbox_without_apply";
       }
   }
}

检查员错误:

<div class="CFApplyButtonConatiner" style="height: 21px;">
 <button class="tab-button tab-widget disabled" type="button" style="max-width: 56px" disabled="">
 <span class="icon"></span>
 <span class="label">Cancel</span>
</button>
 <button class="tab-button tab-widget focus disabled" type="button" style="max-width: 56px" disabled="">
 <span class="icon"></span>
 <span class="label">Apply</span>
</button>

有人可以检查一下吗? 我不知道为什么它不起作用?也许有人知道如何测试它。

BR, Marija的

2 个答案:

答案 0 :(得分:2)

为了清楚起见,这个解决方案将查找显示的元素,然后点击它!

WebDriverWait wait = new WebDriverWait(driver, 10);
WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("div.CFApplyButtonConatiner"))));
List<WebElement> elementsList = driver.findElements(By.cssSelector("div.CFApplyButtonConatiner > button");
for(WebElement  ele: elementsList) {
    if(ele.isDisplayed()) {
        ele.click();
    }
}

答案 1 :(得分:0)

我使用了Ranijth的建议:

    if (type.equals("")) {
        elementList = driver.findElements(By.xpath("//div[@id='" + id + "_menu']//a[@class='FIText']"));

        if (elementList.size() > 0) {


            //if (driver.findElements(By.xpath("//div[@id='" + id + "_menu']//div[@class='CFApplyButtonContainer']//button[@class='tab-button']//span[@class='label'][text()='Apply']/..")).size() > 0) {


                    if (driver.findElements(By.cssSelector("div.CFApplyButtonConatiner > button"))!=null) {

            //if (driver.findElements(By.cssSelector("div.CFApplyButtonConatiner > button")).size() > 0) {


            type = "multi_checkbox_with_apply";
            }
            else {
                type = "multi_checkbox_without_apply";
            }
        }
    }

现在它工作正常,但现在我需要测试它以检查输出。如果有人有更好的解决方案,请告诉我。