What type of problems one will face with QTP , if too many
browsers are opened at a time?
Answers were Sorted based on User's Feedback
Answer / ganesh kumar
Nothing is problem with QTP to identify the Browsers even
there are too many browsers opened. Since Each browser will
have different unique property to identify the browsers at
runtime. There will be a problem only when the name and
title are same for two browsers. that too can be handled
with the ordinal identifier. by giving the index we can
handle this situation.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / sunitha
QTP will get confused when there are too many browsers
open , It might close the wroge window when you try to
close browsers. To make sure that QTP looks into the
correct browser you should either do a descriptive
programming or add the properties 'title' and 'name' to the
properties.
| Is This Answer Correct ? | 2 Yes | 2 No |
Synchronization methods?
I have to do testing for XML file using QTP. 1. I was given a sample XML, I had to edit that with my actual data and had to make a new XML-- this part is completed, I did that. 2. Now I have to copy the exact contents of that XML file and have to paste it in a web application as a request message for web appliaction processing, using QTP. So I am unable to copy and paste it in web application, please help me out.
How can we QTP Scripts in xml format? is there any way to do so?
How can we change the .mtr file to .tsr file and vice-versa
How QTP recognizes Objects in AUT?
What are Child Objects?
wt is automation framework? give explonation?
Given a string variable contain a full name (last name, first name), using vbscripting, how can you extract first and last name and save them into two different variables.
How do I generate Test Results window using descriptive method ( run time ) after my test execution process? Please have a look of my below code. ========================================================= Dim qtApp Dim qtTest Dim qtResultsOpt Set qtApp = CreateObject("QuickTest.Application") qtApp.Launch qtApp.Visible = True qtApp.Options.Run.CaptureForTestResults = "Always" qtApp.Options.Run.RunMode = "Fast" qtApp.Options.Run.ViewResults = True qtApp.Open "C:\Automation\Example", True Set qtTest = qtApp.Test qtTest.Settings.Run.OnError = "NextStep" Set qtResultsOpt = CreateObject ("QuickTest.RunResultsOptions") qtResultsOpt.ResultsLocation = "C:\Automation\Example\Res1" qtTest.Run qtResultsOpt MsgBox qtTest.LastRunResults.Status qtTest.Close Set qtResultsOpt = Nothing Set qtTest = Nothing Set qtApp = Nothing ========================================================== This code is working fine, but Test Result window is not displaying after execution. Anybody can please help me regading the same. Thanks Akshaya Madali Capgemini India Pvt Ltd 9823213538
In the QTP the snap shots obtained during the recording time will appear in the active screen, if we have to use the snapshots from where we have to access. in which memory location of QTP they will be stored?
What is the use of Regular expression?
Suppose you are using shared objects repository in your test and you want to split your present action? At that time shared object repository is single or it’s also splits?