mirror of https://github.com/apache/jmeter.git
Document content-type_text property
git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/trunk@600578 13f79535-47bb-0310-9956-ffa450edef68
Former-commit-id: 8758cea11c
This commit is contained in:
parent
c80123747c
commit
57063fb26f
|
|
@ -1780,8 +1780,29 @@ Note that the Request panel only shows the headers added by JMeter.
|
|||
It does not show any headers (such as Host) that may be added by the HTTP protocol implementation.
|
||||
<p>
|
||||
There are several ways to view the response, selectable by a radio button.</p>
|
||||
<p>The default view shows all of the text contained in the
|
||||
response.</p>
|
||||
<ul>
|
||||
<li>Show text</li>
|
||||
<li>Render HTML</li>
|
||||
<li>Render XML</li>
|
||||
<li>Render JSON</li>
|
||||
</ul>
|
||||
<p>
|
||||
The default "Show text" view shows all of the text contained in the
|
||||
response.
|
||||
Note that this will only work if the response content-type is considered to be text.
|
||||
If the content-type begins with any of the following, it is considered as text,
|
||||
otherwise it is considered to be binary.
|
||||
<pre>
|
||||
text/
|
||||
application/javascript
|
||||
application/json
|
||||
application/xhtml+xml
|
||||
application/soap+xml
|
||||
</pre>
|
||||
Additional types can be added by defining the JMeter property
|
||||
<b>content-type_text</b>
|
||||
as a comma-separated list of the content-type prefixes to be matched.
|
||||
</p>
|
||||
<p>The HTML view attempts to render the response as
|
||||
HTML. The rendered HTML is likely to compare poorly to the view one
|
||||
would get in any web browser; however, it does provide a quick
|
||||
|
|
|
|||
Loading…
Reference in New Issue