Sunday 9 June 2013

How to run LoadRunner Controller from command line?

Today I will explain how to open and run LoadRunner Controller scripts from command line.
This feature can decrease tester's manual efforts and thereby to increase your effectiveness and performance.
You can open LoadRunner Controller scenario with:
LoadRunner\bin\Wlrun.exe -Run -TestPath scenario.lrs -ResultName res_folder

For example:
(note: click the image to enlarge it)
As a result of above command, LoadRunner Controller:
starts
opens Controller scenario
executes it
saves results to folder 'C:\Temp\LR_Res\result_0'

After that, Controller finishes working and closes.
Please, see files from created 'C:\Temp\LR_Res\result_0' folder:

Tips: As you see, there is LoadRunner Result file (result_0.lrr). You can pass it automatically to LoadRunner Analysis for further processing.Refer for detailed information: Custom HTML report in LoadRunner Analysis from command line.

Actually, Wlrun.exe can have several settings. There are their descriptions from HP LoadRunner Controller User's Guide (© HP/Mercury Interactive):

TestPath 
Path to the scenario.
For example, C:\LoadRunner\scenario\Scenario.lrs
If the path includes blank spaces, use quotation marks.

Run

Runs the scenario, dumps all output messages into res_dir\output.txt and closes Controller

InvokeAnalysis

Instructs LoadRunner to invoke Analysis upon scenario termination. If this argument is not specified, LoadRunner uses the scenario default setting.

ResultName 
Full results path. For example, "C:\Temp\Res_01"

ResultCleanName 

Results name. For example, "Res_01"

ResultLocation

Results directory. For example, "C:\Temp"

Note: ResultName (full path) = ResultLocation (directory) + ResultCleanName (name)

Well, let's see different variants of how to open and run LoadRunner Controller script:

Open LoadRunner Controller:

Wlrun.exe

Open LoadRunner Controller scenario 'scenario.lrs' and do not execute it:

Wlrun.exe -TestPath scenario.lrs

Open LoadRunner Controller scenario 'scenario.lrs', execute it, and save results to default folder ('C:\Documents and Settings\user_login\Local Settings\Temp\res'):

Wlrun.exe -Run -TestPath scenario.lrs

Open LoadRunner Controller scenario 'scenario.lrs', execute it, and save results to 'res_folder' folder:

Wlrun.exe -Run -TestPath scenario.lrs -ResultName res_folder

Open LoadRunner Controller scenario 'scenario.lrs', execute it, save results to 'res_folder' folder, and after that start Analysis on created results with default template:
Wlrun.exe -Run -TestPath scenario.lrs -ResultName res_folder -InvokeAnalysis

And please see more complex example for desert :)

Open LoadRunner Controller scenario 'scenario.lrs', execute it, save results to 'res_folder' folder, and after that start Analysis on created results with default template. Repeat all these steps 10 times:

set LR_HOME=C:\Program Files\Mercury\LoadRunner
for /L %%i in (1,1,10) do "%LR_HOME%\bin\Wlrun.exe" -Run -TestPath "%LR_HOME%\scenario\memory_leak_crash.lrs" -ResultName C:\Temp\LR_Res\result%%i

Result is:


Well, where to use execution from a command line?
It can be very useful in some cases, when you plain to:
run LoadRunner Controller and pass its results to LoadRunner Analysis
run LoadRunner scripts by schedule

2 comments:

Software Development Company said...

Hello,
The Article on How to run LoadRunner Controller from command line. gives detailed information about it. Thanks for Sharing the information about the LoadRunner Command Line For More information check the detail on the Loadrunner testing here Software Testing Company

Anonymous said...

cd "C:\Program Files (x86)\Micro Focus\LoadRunner\bin"
$ .\CLIControllerApp.exe -TestPath D:\LR_Scenario\LHScenario2.lrs -Run -ResultName D:\LR_Results
Controller did not start. The user is not set as administrator.

AND


cd "C:\Program Files (x86)\Micro Focus\LoadRunner\bin" & CLIControllerApp.exe -TestPath
D:\LR_Scenario\LHScenario2.lrs -Run -ResultName D:\LR_Results
Controller is starting...
Connecting to server...
Wait CLICntrlService_Ready_Event timeout!
ConnectToServer: FAILED
Controller is closing...
Controller is still open. Please check if Controller generated any error window.

Tried many solutions but nothing worked. if you help to solve this issue that will be great.

Thanks in Advance.