开发者

client side performance testing

开发者 https://www.devze.com 2023-03-28 21:07 出处:网络
i wanted to test web based software where java script play significant role.i want to check the performance ,can anyone suggest good tool. also iwant to automate the same.

i wanted to test web based software where java script play significant role.i want to check the performance ,can anyone suggest good tool. also iwant to automate the same.

Note : iam using jmeter for perf开发者_高级运维ormance testing now.


Check out Yslow in firefox

https://addons.mozilla.org/en-US/firefox/addon/yslow/


With Firebug, you can use

console.time("name");
console.timeEnd("name");

or

console.profile();
console.profileEnd();

around a specific block of JS

I guess you could write a firebug plugin to somewhat automate it but it's more for looking for specific things.

0

精彩评论

暂无评论...
验证码 换一张
取 消