Type Params | Return Type | Name and description |
---|---|---|
|
HttpURLConnection |
download() Creates a http url connection to a url, that has the same cookies as the browser. |
|
HttpURLConnection |
download(Map options) Creates a http url connection to a url, that has the same cookies as the browser. |
|
HttpURLConnection |
download(String uri) Calls download with the single option ' uri ' as the given value. |
|
byte[] |
downloadBytes() Opens a url connection via download(Map) by passing an empty Map and returns the raw bytes. |
|
byte[] |
downloadBytes(Map options) Opens a url connection via download(Map) and returns the raw bytes. |
|
byte[] |
downloadBytes(Map options, Closure connectionConfig) Opens a url connection via download(Map) and returns the raw bytes. |
|
byte[] |
downloadBytes(Closure connectionConfig) Opens a url connection via download(Map) and returns the raw bytes. |
|
byte[] |
downloadBytes(String uri) Opens a url connection via download(String) and returns the raw bytes. |
|
byte[] |
downloadBytes(String uri, Closure connectionConfig) Opens a url connection via download(String) and returns the raw bytes. |
|
Object |
downloadContent() Opens a url connection via download(Map) by passing an empty Map and returns the content object. |
|
Object |
downloadContent(Map options) Opens a url connection via download(Map) and returns the content object. |
|
Object |
downloadContent(Map options, Closure connectionConfig) Opens a url connection via download(Map) and returns the content object. |
|
Object |
downloadContent(String uri) Opens a url connection via download(String) and returns the content object. |
|
Object |
downloadContent(String uri, Closure connectionConfig) Opens a url connection via download(String) and returns the content object. |
|
Object |
downloadContent(Closure connectionConfig) Opens a url connection via download(String) and returns the content object. |
|
InputStream |
downloadStream() Opens a url connection via download(Map) using an empty Map and returns the response input stream. |
|
InputStream |
downloadStream(Map options) Opens a url connection via download(Map) and returns the response input stream. |
|
InputStream |
downloadStream(Map options, Closure connectionConfig) Opens a url connection via download(Map) and returns the response input stream. |
|
InputStream |
downloadStream(String uri) Opens a url connection via download(String) and returns the response input stream. |
|
InputStream |
downloadStream(String uri, Closure connectionConfig) Opens a url connection via download(String) and returns the response input stream. |
|
InputStream |
downloadStream(Closure connectionConfig) Opens a url connection via download(Map) and returns the response input stream. |
|
String |
downloadText() Opens a url connection via download(Map) and returns the response text, if the content type was textual. |
|
String |
downloadText(Map options) Opens a url connection via download(Map) and returns the response text, if the content type was textual. |
|
String |
downloadText(Map options, Closure connectionConfig) Opens a url connection via download(Map) and returns the response text, if the content type was textual. |
|
String |
downloadText(String uri) Opens a url connection via download(String) and returns the response text, if the content type was textual. |
|
String |
downloadText(String uri, Closure connectionConfig) Opens a url connection via download(String) and returns the response text, if the content type was textual. |
|
String |
downloadText(Closure connectionConfig) Opens a url connection via download(Map) and returns the response text, if the content type was textual. |
Creates a http url connection to a url, that has the same cookies as the browser. Resolves the base and the uri to the current browser page
Creates a http url connection to a url, that has the same cookies as the browser.
Valid options are:
uri
- the uri to resolve relative to the base option (current browser page used if null
)
base
- what to resolve the uri against (current browser page used if null
)
Calls download with the single option 'uri
' as the given value.
Opens a url connection via download(Map) by passing an empty Map and returns the raw bytes.
Opens a url connection via download(Map) and returns the raw bytes.
Opens a url connection via download(Map) and returns the raw bytes.
If connectionConfig is given, it is called with the HttpURLConnection before the request is made.
Opens a url connection via download(Map) and returns the raw bytes.
connectionConfig is called with the HttpURLConnection before the request is made.
Opens a url connection via download(String) and returns the raw bytes.
Opens a url connection via download(String) and returns the raw bytes.
If connectionConfig is given, it is called with the HttpURLConnection before the request is made.
Opens a url connection via download(Map) by passing an empty Map and returns the content object.
Opens a url connection via download(Map) and returns the content object.
Opens a url connection via download(Map) and returns the content object.
If connectionConfig is given, it is called with the HttpURLConnection before the request is made.
Opens a url connection via download(String) and returns the content object.
Opens a url connection via download(String) and returns the content object.
If connectionConfig is given, it is called with the HttpURLConnection before the request is made.
Opens a url connection via download(String) and returns the content object.
connectionConfig is called with the HttpURLConnection before the request is made.
Opens a url connection via download(Map) using an empty Map and returns the response input stream.
Opens a url connection via download(Map) and returns the response input stream.
Opens a url connection via download(Map) and returns the response input stream.
If connectionConfig is given, it is called with the HttpURLConnection before the request is made.
Opens a url connection via download(String) and returns the response input stream.
Opens a url connection via download(String) and returns the response input stream.
If connectionConfig is given, it is called with the HttpURLConnection before the request is made.
Opens a url connection via download(Map) and returns the response input stream.
connectionConfig is called with the HttpURLConnection before the request is made.
Opens a url connection via download(Map) and returns the response text, if the content type was textual.
Opens a url connection via download(Map) and returns the response text, if the content type was textual.
Opens a url connection via download(Map) and returns the response text, if the content type was textual.
If connectionConfig is given, it is called with the HttpURLConnection before the request is made.
Opens a url connection via download(String) and returns the response text, if the content type was textual.
Opens a url connection via download(String) and returns the response text, if the content type was textual.
If connectionConfig is given, it is called with the HttpURLConnection before the request is made.
Opens a url connection via download(Map) and returns the response text, if the content type was textual.
connectionConfig is called with the HttpURLConnection before the request is made.
Groovy API Documentation for Geb 2.2 - Licensed under the Apache License, Version 2.0 - http://www.gebish.org