Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is LoadRunner?

Answer Posted / ramyab.mca@gmail.com

Hai.....

LoadRunner works by creating virtual users who take the
place of real users operating client software, such as
sending requests using the HTTP protocol to IIS or Apache
web servers. Requests from many virtual user clients are
generated by Load Generators in order to create a load on
various servers under test these load generator agents are
started and stopped by Mercury's Controller program. The
Controller controls load test runs based on Scenarios
invoking compiled Scripts and associated Run-time Settings.
Scripts are crafted using Mercury's "Virtual user script
Generator" (named "V U Gen"), It generates C-language
script code to be executed by virtual users by capturing
network traffic between Internet application clients and
servers. With Java clients, VuGen captures calls by hooking
within the client JVM. During runs, the status of each
machine is monitored by the Controller. At the end of each
run, the Controller combines its monitoring logs with logs
obtained from load generators, and makes them available to
the "Analysis" program, which can then create run result
reports and graphs for Microsoft Word, Crystal Reports, or
an HTML webpage browser.
Each HTML report page generated by Analysis includes a link
to results in a text file which Microsoft Excel can open to
perform additional analysis. Errors during each run are
stored in a database file which can be read by Microsoft
Access.

K,Byeee...
Thanks & Regards
B.Ramyasri

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we use "Text checkpoint" If we can make use of it in "standard checkpoint" ?

1978


Can we record using all the modes in a single script? Explanation with example is appreciated

1918


How to use transactions in qtp?

1041


Hi! Using Descriptive Programming How do we get Parent object for an object by writing script(DP). Say, i want to get a parent object for a "Link" in a web page by writing script in Descriptive Programming.

2622


I am facing an issue of object identification with the dropdown element of DHTML grid. When I tried to recognize these different dropdown objects, QTP identifies only one object for all the dropdowns. Hence, selection of different data from different dropdowns list is an issue. To overcome this problem, i have used Descriptive Programming technique by creating different object descriptions which have all the other properties same but differ only in one property i.e. ‘X’ location of the element on the screen. Hence, i have created distinct object descriptions that would allow us to select values in different dropdowns. The code is given below. But still I am unable to identify distinct dropdown objects. ‘Object Description for Dropdown Cell Status Set objCellStatus = Description.Create objCellStatus("micclass").value = "WebList" objCellStatus("name").value = "select" objCellStatus("x").value = 219 ------ ‘X’ Axis value for cell status drop down ‘Object Description for Dropdown Sub Segment Set objSubSegment = Description.Create objSubSegment("micclass").value = "WebList" objSubSegment("name").value = "select" objSubSegment("x").value = "319" ------ ‘X’ Axis value for sub segment drop down Please help... This is specific to DTML grid(Drop down object)

1967


Explain advantages and disadvantages kdf?

1008


Can anybody let me know how to test the Drag and drop feature of the column in a .net application...eg..i hav to test the drag and drog feature of a table(swftable) in a application..plze help!!

2264


What are the check points can be inserted without recording?

1125


How smart identification works in qtp ?

1047


What is object repository in qtp?

1078


how can i call function (which has link with excell sheet at a remote location) within another function

2059


How to use checkpoints in qtp ?

1102


Where you are storing your script?

1144


How would you export a script from one pc to another in qtp?

1155


I used the below code to open QTP through VBscript?But i can unable to Invoke QTP...PLZ help me with the correct code to invoke QTP through VBS with description of the code aswell. Dim qtApp 'As QuickTest.Application 'Declare the Application object variable Dim qtTest 'As QuickTest.Test 'Declare a Test object variable Dim qtResultsOpt 'Declare a Run Results Options object variable Set qtApp = CreateObject("QuickTest.Application") 'Create the Application object qtApp.Launch 'Start QuickTest qtApp.Visible = False 'Make the QuickTest application visible qtApp.Open "C:\form", True 'Open the test in read-only mode 'set run settings for the test Set qtTest = qtApp.Test qtTest.Run 'Run the test 'WScript.StdOut.Write "Status is: " & qtTest.LastRunResults.Status 'Check the results of the test run qtTest.Close 'Close the test qtApp.quit 'Close QuickTest Pro Set qtResultsOpt = Nothing 'Release the Run Results Options object Set qtTest = Nothing 'Release the Test object Set qtApp = Nothing 'Release the Application object

2990