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

at.willhaben.willtest.proxy.ProxyWrapper Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package at.willhaben.willtest.proxy;

import net.lightbody.bmp.BrowserMobProxy;
import net.lightbody.bmp.core.har.HarEntry;
import net.lightbody.bmp.core.har.HarPostDataParam;
import net.lightbody.bmp.core.har.HarRequest;

import java.util.List;

public interface ProxyWrapper {

    BrowserMobProxy getProxy();

    List getRequests();

    List getRequestsUrls();

    List getRequestsByUrl(String urlPattern);

    HarEntry getRequestByUrl(String urlPattern);

    List getRequestFormParamsByUrl(String urlPattern);

    void clearRequests();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy