如何获取响应jmeter的html动态表数据

时间:2016-08-23 11:56:02

标签: html jmeter response performance-testing hidden

我正在使用JMeter来测试应用程序。

同样,我访问了一些页面,其中动态表格内容应该显示在视图结果中的响应数据上。

然而,除了HTML动态表我能够查看其他内容所以请帮助获取动态表的内容。

我试图使用正则表达式尝试使用XPath提取程序。直到<thead>标记为止,它不会查看<tbody>中的值。

  1. Here I have wanted to get the trains details. As the table is dynamic we should be able to get the values in the response of jmeter. However I am not able to get this contents.
  2. In the same i tried to get the values of the special trains page using XPath so it gives me error of Illegal expression.
  3. Screenshot no.3
  4. 我没有使用任何不同的库来获取html表数据值。

    我试图通过使用正则表达式中的表来获取表内容

    Xpath查询:&#34; / html / body / table / tbody / tr 2 / td / div&#34; 参考名称:Special_trains

    所以它给出了输出java.net.URISyntaxException:索引77处查询中的非法字符:http://enquiry.indianrail.gov.in/ntes/specialTrains.jsp?scrollerDivSpltrn=Not找到了

    同样,div id是:&#34; scrollerDivSpltrn&#34; 因此需要答案

1 个答案:

答案 0 :(得分:1)

您只需要正确提取表格ID。一旦你能够提取该id,你就应该能够获取动态表。