性能测试工具集锦(上)本文介绍了业界广泛使用的20种性能测试工具。1、Apache JMeterhttp://jmeter.apache.org/
JMeter是100%纯Java的开源项目,主要用于测量性能和对功能行为做负载测试,既可以测试静态资源,又可以测试动态资源。目前最新版本为2.13。2、Grinderhttp://grinder.sourceforge.net/
Grinde...
分类:
其他好文 时间:
2015-05-05 21:50:00
阅读次数:
139
Parsing the XML Responseget the root node: var rootNode = document.wlXmls[0].XMLDocument.documentElementget the root node's name : rootNode.nodeNamege...
分类:
Web程序 时间:
2014-12-26 12:27:35
阅读次数:
151
//initial the Agendafunction InitAgenda(){ wlGlobals.SaveHeaders = true; wlGlobals.SaveSource = true; IncludeFile("myFunctionLib.js"); // include a...
分类:
Web程序 时间:
2014-12-19 18:59:24
阅读次数:
456
服务器返回Json格式的响应内容经常是以 String (txt) 形式返回给客户端。客户端需要把 文本形式的内容还原为Json格式以进一步做处理(如,取得返回内容的一个值作为下个请求的一个输入)。这就要用到 一个函数 evel()。 具体做法如下:Parsing the JSON Response...
分类:
Web程序 时间:
2014-12-11 15:39:54
阅读次数:
207
WebLoad 对于模拟一个HTTP 请求,一般都是 由以下三部分组成,并把这三部分包在一个Transaction里(从BeginTransation 到 EndTransaction 为止):1. request header or cookiea) request header, 即发送HTTP...
分类:
Web程序 时间:
2014-12-03 18:26:25
阅读次数:
243