at.willhaben.willtest.proxy.ProxyWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core classes with as few dependencies as possible
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