如何在jmeter中连续执行相同的URL n次?

时间:2019-05-22 06:39:31

标签: loops url jmeter execution

我们有一个方案,其中url为“ xyz / abc / 0”。根据我们在 table(id =“ tble”)中拥有的数据列表,计数一直从0递增到n,我必须在其中获取总数 id 表并将值传递到下一个URL,如屏幕截图所示:

如果计数为2,我的网址将为 xyz / abc / 0 xyz / abc / 1 ,依此类推。

<div class="row col-sm-12" style="overflow-x:auto">
<table cellpadding="0" id="tble" style="padding:0px;margin-top:30px;width:1030px;" cellspacing="0" class="table table-bordered">
    

    <tr class="text-center alert-info btn-lg">
      
                    <input type="checkbox" class="chkStatus" />
                </td>
                <td nowrap style="padding:5px;width:150px;">
                    <label style="color:black;"> Name1 (X123) </label>  
                </td>

 <tr id="222">
                <td style="text-align:center;">
                    
                    <input type="checkbox" class="chkStatus" />
                </td>
                <td nowrap style="padding:5px;width:150px;">
                    <label style="color:black;"> Name1 (X456)  </label>  
                </td>

我应该使用什么循环来满足此条件。

1 个答案:

答案 0 :(得分:1)

请检查以下计划:-

下面,使用regEx获取响应中的所有count或tr:-

enter image description here 仅将For Each用于迭代。不从中获取任何输出:-

enter image description here 使用计数器从1开始,并从regEx获取结束值:-

enter image description here

将计数器变量传递给URL请求:- enter image description here 这只是一个示例,您可以根据需要在任何地方使用。 请检查这是否对您的情况有所帮助。