What is Virtual Users?
Answer / ramyab.mca@gmail.com
Hai.....
Unlike a WinRunner workstation which emulates a single
user's use of a client, LoadRunner can emulate thousands of
Virtual Users.Load generators are controlled by VuGen
scripts which issue non-GUI API calls using the same
protocols as the client under test. But WinRunner GUI
Vusers emulate keystrokes, mouse clicks, and other User
Interface actions on the client being tested. Only one GUI
user can run from a machine unless LoadRunner Terminal
Services Manager manages remote machines with Terminal
Server Agent enabled and logged into a Terminal Services
Client session.
During run-time, threaded users share a common memory pool.
So threading supports more Vusers per load generator.
The Status of Vusers on all load generators start
from "Running", then go to "Ready" after going through the
init section of the script. Vusers are "Finished" in passed
or failed end status. Vusers are automatically "Stopped"
when the Load Generator is overloaded.
To use Web Services Monitors for SOAP and XML, a separate
license is needed, and vUsers require the Web Services add-
in installed with Feature Pack (FP1). No additional license
is needed for standard web (HTTP) server monitors Apache,
IIS, and Netscape.
K,Byeee...
Thanks & Regards
B.Ramyasri
| Is This Answer Correct ? | 0 Yes | 1 No |
what is Smart identification
Does we use Classes and methods in realtime..?How wud we access methods in a class..?Thanq Guys..!
can anyone tell me from where i can download qtp demo or crack version
How to upload excel files into Quality Center using QTP Script and how to delete excel files from Quality?
What is ‘object spy’ and what is the function of object spy in qtp?
Why bpt?
How Can I find the least value in a bunch of variables using qtp.. E.g.:- A = 210, B = 212, C = 60, D = 111 I don’t want to write bunch of lines for this…. Is there a way to get the result in one line…..
How to Analyze the Checpoint results by Text/Text Area Checkpoint?
hai there..this is chandu..i have a txt file which containing 1000 lines but at a time i want to retrieve 50 lines..after 50 lines i required to retrieve 51-100..like that i want...so could anybody help me in this...thanks in Advance..
What information do the columns in the Keyword View show for each step?
Hi guys i'm prepareing for interview question for qtp i don't have bayground for vb scipt language can any one tell me it is easy to do job in qtp without bayground.
I am verifying the actual vs the input value to make sure that they been entered correctly. In the Global Sheet I have a column called Customer with the multiple names in each row and now I am trying to capture the value during runtime under the column name Customer_in_Apps. Somewhat it works but during runtime the values are being stored in each column vs each row i.e., Customer_in_Apps, Customer_in_Apps1. Automatically it add columns instead of rows. row=datatable.getsheet("Global").GetRowCount for x=1 to row datatable.getsheet("Global").SetCurrentRow(x) Window("Customer Desktop").Window("Customer Tracking (Privacy").WinObject("TreeView20WndClass").Click 92,244 runtimevalue = .VbTreeView("vbname:=AppServerTree").GetROProperty("Selectio n") Val1=Datatable.Value("Customer",dtGlobalSheet) Val2 = Datatable.GlobalSheet.AddParameter("Customer_in _Apps",runtimevalue) If (trim(Val2)=trim(Val1)) Then Reporter.ReportEvent micPass, "Customer validation successful", "Actual Value: " &Val1&vbcrlf& "Customer Value: " &_Val2 else Reporter.ReportEvent micFail, "Customer validation unsuccessful", "Actual Value: " &Val1&vbcrlf& "Customer Value: " &Val2 End If Next