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

com.github.tamnguyenbbt.dom.TestMethodInfo Maven / Gradle / Ivy

Go to download

Find jsoup elements, relative xpath queries, and Selenium web elements for web service and Selenium-based Web UI testing

There is a newer version: 1.1.3
Show newest version
package com.github.tamnguyenbbt.dom;

public class TestMethodInfo
{
    public String returnType;
    public boolean hasParam;
    public String bodyWithInjectableXpathAndParam;

    public TestMethodInfo(String returnType, boolean hasParam, String bodyWithInjectableXpathAndParam)
    {
        this.returnType = returnType;
        this.hasParam = hasParam;
        this.bodyWithInjectableXpathAndParam = bodyWithInjectableXpathAndParam;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy