IE8 で機能テストを実行しているときに、IE プロファイラーで機能を取得していますが、これには時間がかかります。機能テストのパフォーマンスを改善するにはどうすればよいですか。これは最も時間がかかる機能です。
poller,
_open ,
class,
document loaded,
check for new document,
js script-window script block,
filter,
function.call,
sizzle,
function.apply,
init,
method,
find,
process,
run,
funcunit,
perform sync query,
そしてテストはこのようなものです
module("test#009 - logo for legacy",{
set up:function(){
s.open("/demo/documentation/details/10");}
});
test("logo" ,function(){
s("div.ui-pagelogo:eq(0)").exists function(){
ok(true,"div with classname ui-pagelogo exists");
});
s("div.ui-pagelogo:eq(0)>a").exists(function(){
ok(true,"dive.ui-pagelogo containing anchor tag exists");
});
s(div.ui-pagelogo:eq(0)>a").attr("href","http://www.google.com").existsfunction(){
ok(true,"anchor tag exist with href attribut(e");
});
s(div.ui-pagelogo:eq(0)>a").attr("title","symbol of unity").existsfunction(){
ok(true,"anchor tag exist with title attribute");
});