|
411. How To Export QTP Results To An “.xls File”?
Date Posted: 06/27/2012
Ans: By default it creates an ‘XML file’ and displays the results.
|
|
|
412. How To Export A Data Present In Data Table To An .xls File?
Date Posted: 06/27/2012
Ans: Data Table. Export “...Xls file name…“
|
|
|
413. What Do You Call The Window Test Director-test Lab?
Date Posted: 06/27/2012
Ans: It is called as Execution grid. It is a place where manual or automated scripts run.
|
|
|
414. Explain The Check Points In QTP?
Date Posted: 06/27/2012
Ans: The check point confirms that expected information is displayed in a application that is running on the test. These are the 8 steps of checkpoints that can be used to test standard web object by use of QTP.
-
The characteristics of an application can be checked by using page check point.
-
The displayed text spring in the appropriate place of an application can be checked by using text check points.
-
The values of objects on a particular application can be checked by use of standard check point.
-
The value of images on the application can be checked by use of image check point.
-
The information within a table on a application can be checked by use of table check point.
-
The section 508 compliance for web pages can be checked by using accessibility check point.
-
The XML documents and contents can be checked by use of XML checkpoint.
-
The contents of database accessed by websites can be checked by use of a database checkpoint.
|
|
|
415. How QTP Does Identifies Object Name In The Application?
Date Posted: 06/27/2012
Ans: The QTP identifies the object name in the application by Logical name and class.
|
|
|
416. In How Many Ways We Can Add Checkpoints To Application Using QTP?
Date Posted: 06/27/2012
Ans: The adding of checkpoints can be done while recording application or we can add after recording is completed.
|
|
|
417. What Is Reporter. Report Event?
Date Posted: 06/27/2012
Ans: This is standard method that is used by QTP to send custom messages which can test the results window.
Syntax:
Reporter.ReportEvent Event Status, ReportStepName, Details [ImageFilePath]
Where Event status = 0 or micpass
1 or micfail
2 or micdone
3 or micwarning
|
|
|
418. What Is QTP Batch Testing Tool?
Date Posted: 06/27/2012
Ans: The batch testing tool can be used to run the multiple scripts. Once the scripts are added in the tool then it can automatically open them and then start executing them one after the other.
|
|
|
419. Shift Between Per Action And Shared Object Repository? If Yes How?
Date Posted: 06/27/2012
Can you shift between per action and shared object repository? If yes how?
Ans: Yes we can shift. Go to Test—setting—Resources, there is an option of choosing an object repository is present.
|
|
|
420. Cross Platform Testing And Cross Browser Testing
Date Posted: 06/27/2012
How to perform Cross platform testing and Cross browser testing using QTP? Can u explain giving some example?
Ans:
Cross platform testing:
By making use of built in environment variables, the operating system information can be excavated.
For example: Platform= Environment (“OS”). Then based on particular platform we need to call the actions.
Cross browser testing:
The below code is an example of cross browser testing.
Example: Browser ("Core Values").Get RO Property ("version") we can extract the browser and its particular version.
|
|