ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Software  >>  Testing  >>  Automation Testing  >>  QTP
 
 


 

 
 WinRunner interview questions  WinRunner Interview Questions
 Load Runner interview questions  Load Runner Interview Questions
 QTP interview questions  QTP Interview Questions
 Test Director interview questions  Test Director Interview Questions
 Rational TestSuite interview questions  Rational TestSuite Interview Questions
 Silk Test interview questions  Silk Test Interview Questions
 Automation Testing AllOther interview questions  Automation Testing AllOther Interview Questions
Question
I have recorded a test over web application(with IE6.0) in 
analog mode. But, while running it my test gets failed. Why?
(Note: my systray has 3 open web applications)
 Question Submitted By :: Geminisrinivas
I also faced this Question!!     Rank Answer Posted By  
 
  Re: I have recorded a test over web application(with IE6.0) in analog mode. But, while running it my test gets failed. Why? (Note: my systray has 3 open web applications)
Answer
# 1
QTP provides an option to enter the url on which you are 
going to run the script. If u dont provide this, the script 
might NOT recognize the url as u've saind u opened 3 IE 
windows.


Hope this answers your question
 
Is This Answer Correct ?    0 Yes 0 No
Aditya
 
  Re: I have recorded a test over web application(with IE6.0) in analog mode. But, while running it my test gets failed. Why? (Note: my systray has 3 open web applications)
Answer
# 2
I think this is not proper answer.You are talking about the 
script running mode option.But,as per question it is asking 
while running test got failed.....Plz if anybody know share 
with us.
 
Is This Answer Correct ?    0 Yes 0 No
Amita
 
 
 
  Re: I have recorded a test over web application(with IE6.0) in analog mode. But, while running it my test gets failed. Why? (Note: my systray has 3 open web applications)
Answer
# 3
I think this is not proper answer.You are talking about the 
script running mode option.But,as per question it is asking 
while running test got failed.....Plz if anybody know share 
with us.
 
Is This Answer Correct ?    0 Yes 0 No
Amita
 
  Re: I have recorded a test over web application(with IE6.0) in analog mode. But, while running it my test gets failed. Why? (Note: my systray has 3 open web applications)
Answer
# 4
I think this is not proper answer.You are talking about the 
script running mode option.But,as per question it is asking 
while running test got failed.....Plz if anybody know share 
with us.
 
Is This Answer Correct ?    0 Yes 0 No
Amita
 
  Re: I have recorded a test over web application(with IE6.0) in analog mode. But, while running it my test gets failed. Why? (Note: my systray has 3 open web applications)
Answer
# 5
It is always not guarentee that, the analog mode scripts 
run properly. Why because, in analog the tool does not 
identify at object level. It blindly depends on the 
location of the objects. If the object/window is moved to 
some another location or the screen resoultion is changed 
etc.. then the test will fail.
From the question, say if any of the browser application
(from 3 browser applications) in systray is closed, then 
the test may fail.
 
Is This Answer Correct ?    0 Yes 0 No
Uday Kumar_anem
 
  Re: I have recorded a test over web application(with IE6.0) in analog mode. But, while running it my test gets failed. Why? (Note: my systray has 3 open web applications)
Answer
# 6
Analog mode records depends on screen as well as followed 
window..means if you record related to screen then it 
basically depends on position of the window.while recording 
if you place window somewhere else and while running script 
you might be moved the window some where else..thats why 
script is failing
 
Is This Answer Correct ?    0 Yes 0 No
Tara
 

 
 
 
Other QTP Interview Questions
 
  Question Asked @ Answers
 
Hi All, I have QTP installed on my machine but the application under test (AUT) is on remote desktop (i.e. I first connect to remote desktop from my machine in order to run the application). I am able to record the script successfully with QTP running on my machine and application running on remote. However, when i run the recorded script, system fails to run it and indicates me that it does not identify the object. Is it possible to record and play while QTP and AUT are not on same machine?  6
what is object repository size? ITC-Infotech22
How QTP recognizes Objects in AUT? Blue-Star5
what is Compile Module in QTP? what exactly it contains Functions or Actions? GE2
What is the difference betweent test and component?  1
how u write vb script in qtp pls give me some basic script and some material Datamatics22
how to call a funtion in a script? i have saved the login scipt in notepad. with extension .vbs. But when i am calling the function with the keyword CALL <Function Name>. its not working out. can any one give me a clue how to call the external functions. with example.  3
Waht is diff between SystemUtil.Run and invokeapplication  4
what is TOM in qtp? Accenture5
QTP identifying the child tabs in a maintab like tab_1,tab_2,tab_3,tab_4 while using a for loop for these tabs.its not proceeding from _1 to _2. How can i use "for loop " Livetek2
How to export QTP results to an ".xls" file?  3
in a database table there are 3 columns (name , marks,grade) , in application after retrieving data from db to fields name, marks click ok button then grade should displayed ---for this how to write vb script prgm IBM3
how can we call an external library file in QTP apart from using the Executefile statement..?? is there any other way we can call the external library file in QTP..?? DST-Global-Solutions1
How to handle Run-time errors?  2
Check point what is how many types of checkpoint and explain Accenture2
How can we record an edit box in the Web application ? Kanbay3
Hi I am new to QTP. we are planning to implement automation for the application. I am trying to execute the following script: Set ExcelObj=CreateObject ("Excel.Application") ExcelObj.WorkBooks.Add Set NewSheet=ExcelObj.Sheets.Item(1) NewSheet.Name="Order" ExcelObj.Cells(1, 1).Value = "Name" ExcelObj.Cells(1, 2).Value = "Ordernum" ExcelObj.Cells(2, 1).Value = "nam" ExcelObj.Cells(2, 2).Value = "21" ExcelObj.ActiveWorkbook.SaveAs "c:\test1.xls" ExcelObj.Quit Set ExcelObj = Nothing in the above script for the line(ExcelObj.Cells(2, 2).Value = "21") it is inserting the value 21 successfully.this is fine But if i want to insert a variable instead of the constant value then what should be the modification in the script. For example: If user retrives a value throug "GetRoProperty" and wants to insert the value into then how the script changes?  1
What is the difference between Dim And Redim IBM3
WHAT IS ENVIRONMENT VARIABLES? Ordain-Solutions4
It is regarding VBScript, how to export our function results to ExcelSheet through VBscripting. Ex: I have written add function, that result should export to Excel.  3
 
For more QTP Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com