All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.windup.testutil.html.TestMigrationIssuesReportUtil Maven / Gradle / Ivy

There is a newer version: 6.3.9.Final
Show newest version
package org.jboss.windup.testutil.html;

import java.util.List;

import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;

/**
 * @author Jesse Sightler
 */
public class TestMigrationIssuesReportUtil extends TestChromeDriverReportUtil {
    private static final String ISSUES_TABLE_CLASS_NAME = "migration-issues-table";

    public boolean checkIssue(String issueName, int numberFound, int effortPerIncident, String levelOfEffort, int totalEffort) {
        List elements = getDriver().findElements(By.className(ISSUES_TABLE_CLASS_NAME));
        if (elements == null || elements.isEmpty()) {
            throw new CheckFailedException("Unable to find " + ISSUES_TABLE_CLASS_NAME + " table element");
        }
        for (WebElement element : elements) {
            if (super.checkValueInTable(element, issueName, String.valueOf(numberFound), String.valueOf(effortPerIncident),
                    levelOfEffort, String.valueOf(totalEffort)))
                return true;
        }

        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy