1

私は、Sharepointで開発されたWebアプリケーションのパフォーマンステストを実行するためにLoadRunnerツールに取り組んでいます。スクリプトを記録し、スクリプトをテストしました。

I have uploaded the scripts in the Performance Centre for Load Testing. But, the issue is I have some parameters like URL which have to be changed before running the script in the Performance centre. How can I edit the parameter values in the performance centre. Do we have any options to edit the script in the performance centre itself or we have to download the script, edit it and then upload it again.

Please help me with this.

Thanks,

Udhay.

4

2 に答える 2

2

パフォーマンスセンターでスクリプトを編集する方法はありません。できることの1つは、Vugenをパフォーマンスセンターと同期し、スクリプトを開いて編集し、保存することです。

このオプションは、ロードランナーの[ツール]メニューにあります。

于 2012-07-05T20:57:13.493 に答える
0

次のコードを使用して、ControllerまたはVuGenで実行しているかどうかを確認することもできます。

int function isVuGen()
{
    // Check if we are running under VuGen
    //
    // Returns
    //   0  = Under Controller
    //   1  = Under VuGen

    if (strcmp(lr_get_master_host_name(),"None") == 0) return = 1; // VuGen

    return 0; // Controller
}
于 2012-09-11T07:57:57.850 に答える