Class RunnerOptions
- java.lang.Object
-
- com.applitools.eyes.visualgrid.services.RunnerOptions
-
public class RunnerOptions extends Object
-
-
Constructor Summary
Constructors Constructor Description RunnerOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RunnerOptionsapiKey(String apiKey)RunnerOptionsautProxy(com.applitools.eyes.AbstractProxySettings autProxy)Setting a separated proxy for requests made to non-eyes domains.RunnerOptionsautProxy(com.applitools.eyes.AbstractProxySettings autProxy, String[] domains)Setting a separated proxy for requests sent to the given domains.RunnerOptionsautProxy(com.applitools.eyes.AbstractProxySettings autProxy, String[] domains, com.applitools.eyes.AutProxyMode mode)Setting a separated proxy for requests sent to the given domains (if mode isAutProxyMode.ALLOWor for requests sent to domains other than the given domains (if mode isAutProxyMode.BLOCK.RunnerOptionsautProxy(com.applitools.eyes.AutProxySettings autProxy)StringgetApiKey()com.applitools.eyes.AutProxySettingsgetAutProxy()com.applitools.eyes.LogHandlergetLogHandler()com.applitools.eyes.AbstractProxySettingsgetProxy()StringgetServerUrl()IntegergetTestConcurrency()RunnerOptionslogHandler(com.applitools.eyes.LogHandler logHandler)RunnerOptionsproxy(com.applitools.eyes.AbstractProxySettings proxySettings)RunnerOptionsserverUrl(String serverUrl)RunnerOptionstestConcurrency(int testConcurrency)
-
-
-
Method Detail
-
testConcurrency
public RunnerOptions testConcurrency(int testConcurrency)
-
getTestConcurrency
public Integer getTestConcurrency()
-
apiKey
public RunnerOptions apiKey(String apiKey)
-
getApiKey
public String getApiKey()
-
serverUrl
public RunnerOptions serverUrl(String serverUrl)
-
getServerUrl
public String getServerUrl()
-
proxy
public RunnerOptions proxy(com.applitools.eyes.AbstractProxySettings proxySettings)
-
getProxy
public com.applitools.eyes.AbstractProxySettings getProxy()
-
autProxy
public RunnerOptions autProxy(com.applitools.eyes.AbstractProxySettings autProxy)
Setting a separated proxy for requests made to non-eyes domains. If the AUT proxy is set, it cannot be changed again for those specific requests by any means. If AUT proxy is set to null, there will be no proxy for those specific requests.
-
autProxy
public RunnerOptions autProxy(com.applitools.eyes.AbstractProxySettings autProxy, String[] domains)
Setting a separated proxy for requests sent to the given domains. Requests to other non-eyes domains will be sent without a proxy. If the AUT proxy is set, it cannot be changed again for those specific requests by any means. If AUT proxy is set to null, the behavior will be the same asautProxy(AbstractProxySettings)
-
autProxy
public RunnerOptions autProxy(com.applitools.eyes.AbstractProxySettings autProxy, String[] domains, com.applitools.eyes.AutProxyMode mode)
Setting a separated proxy for requests sent to the given domains (if mode isAutProxyMode.ALLOWor for requests sent to domains other than the given domains (if mode isAutProxyMode.BLOCK. If the AUT proxy is set, it cannot be changed again for those specific requests by any means. If AUT proxy is set to null, the behavior will be the same asautProxy(AbstractProxySettings)
-
autProxy
public RunnerOptions autProxy(com.applitools.eyes.AutProxySettings autProxy)
-
getAutProxy
public com.applitools.eyes.AutProxySettings getAutProxy()
-
logHandler
public RunnerOptions logHandler(com.applitools.eyes.LogHandler logHandler)
-
getLogHandler
public com.applitools.eyes.LogHandler getLogHandler()
-
-