Jmeter プロキシを使用して、ブラウザで行った手順を記録しています。1 つの特定のページをリッスンするためだけにプロキシ サーバーを設定する可能性はありますか?
www.test123.com で行った手順のみを記録したい
ありがとう
Jmeter プロキシを使用して、ブラウザで行った手順を記録しています。1 つの特定のページをリッスンするためだけにプロキシ サーバーを設定する可能性はありますか?
www.test123.com で行った手順のみを記録したい
ありがとう
インクルード パターンを使用して、記録される要求を制限します。
http://jmeter.apache.org/usermanual/component_reference.html#HTTP_Proxy_Serverに従って
The include and exclude patterns are treated as regular expressions (using Jakarta ORO). They will be matched against the host name, port (actual or implied) path and query (if any) of each browser request. If the URL you are browsing is
"http://jmeter.apache.org/jmeter/index.html?username=xxxx" ,
then the regular expression will be tested against the string:
"jmeter.apache.org:80/jmeter/index.html?username=xxxx" .
Thus, if you want to include all .html files, your regular expression might look like:
".*\.html(\?.*)?" - or ".*\.html" if you know that there is no query string or you only want html pages without query strings.
「www.test123.com.*」は、指定された URL からのリクエストのみを記録する必要があります。