1

テーブルの行数を数える必要があります。だから私はregを使用します。exp。抽出器。しかし、応答アサーションはエラーで終了し、正確に検索しようとしましたrows:${ROWS_matchnr}

グーグルを試しましたが、機能しない推奨事項がいくつか見つかりました。

Thread Group
    Http Cookie Manager
    Http Request
        Regular Expression Extractor(ROWS, row-(.*), $1$, 0, )
        Response Assertion(rows:${ROWS_matchnr})
4

1 に答える 1

2

[一致なし]フィールドの値を0から-1に変更します。に記載されているように、ええと、役に立たない公式ヘルプ

If the match number is set to a negative number, then all the possible matches in the sampler data are processed. The variables are set as follows:

   refName_matchNr - the number of matches found; could be 0
   refName_n, where n = 1,2,3 etc - the strings as generated by the template
   refName_n_gm, where m=0,1,2 - the groups for match n
   refName - always set to the default value
   refName_gn - not set

次に、${ROWS_matchnr}を${ROWS_matchNr}(大文字のN)に変更すると、機能するはずです。

それでも問題が解決しない場合は、デバッグサンプラーを使用して、正規表現から何が返されるかを確認してください。

于 2012-06-07T15:11:46.053 に答える