DslHttpSampler |
DslHttpSampler.body(Class<? extends PropertyScriptBuilder.PropertyScript<String>> bodySolverClass) |
Same as body(Function) but with support for running at scale in a remote engine.
|
DslHttpSampler |
DslHttpSampler.body(String body) |
Specifies the body to be sent in the HTTP request generated by the sampler.
|
DslHttpSampler |
DslHttpSampler.body(Function<DslJsr223PreProcessor.PreProcessorVars,String> bodySupplier) |
Same as body(String) but allows using dynamically calculated HTTP request body.
|
DslHttpSampler |
DslHttpSampler.bodyFile(String filePath) |
Specifies a file to be sent as body of the request.
|
DslHttpSampler |
DslHttpSampler.bodyFilePart(String name,
String filePath,
org.apache.http.entity.ContentType contentType) |
Specifies a file to be sent in a multipart form body.
|
DslHttpSampler |
DslHttpSampler.bodyPart(String name,
String value,
org.apache.http.entity.ContentType contentType) |
Specifies a part of a multipart form body.
|
DslHttpSampler |
DslHttpSampler.clientImpl(DslHttpSampler.HttpClientImpl clientImpl) |
Allows specifying the HTTP client implementation to use for this particular sampler.
|
DslHttpSampler |
DslHttpSampler.downloadEmbeddedResources() |
Allows enabling automatic download of HTML embedded resources (images, iframes, etc).
|
DslHttpSampler |
DslHttpSampler.downloadEmbeddedResources(boolean enable) |
|
DslHttpSampler |
DslHttpSampler.downloadEmbeddedResourcesMatching(String urlRegex) |
|
DslHttpSampler |
DslHttpSampler.downloadEmbeddedResourcesNotMatching(String urlRegex) |
|
DslHttpSampler |
DslHttpSampler.encoding(Charset encoding) |
Specifies the charset to be used to encode URLs and request contents.
|
DslHttpSampler |
DslHttpSampler.followRedirects(boolean followRedirects) |
Allows enabling/disabling automatic request for redirects.
|
DslHttpSampler |
DslHttpSampler.method(String method) |
Specifies the HTTP method to be used in the HTTP request generated by the sampler.
|
DslHttpSampler |
DslHttpSampler.param(String name,
String value) |
Allows specifying a query parameter or url encoded form body parameter.
|
DslHttpSampler |
DslHttpSampler.post(Class<? extends PropertyScriptBuilder.PropertyScript<String>> bodySolverClass,
org.apache.http.entity.ContentType contentType) |
|
DslHttpSampler |
DslHttpSampler.post(String body,
org.apache.http.entity.ContentType contentType) |
Specifies that the sampler should send an HTTP POST to defined URL.
|
DslHttpSampler |
DslHttpSampler.post(Function<DslJsr223PreProcessor.PreProcessorVars,String> bodySupplier,
org.apache.http.entity.ContentType contentType) |
|
DslHttpSampler |
DslHttpSampler.rawParam(String name,
String value) |
|