* @param fields the fields composing the form name/value pairs
* @return the {@link ContentResponse} for the request
*/
public ContentResponse FORM(URI uri, Fields fields) throws InterruptedException, ExecutionException, TimeoutException
{
return POST(uri).content(new FormContentProvider(fields)).send();
}