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   interview questions urls   External Links  Contact Us     Login  |  Sign Up                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 


 

Company >> Cap Gemini >> Interview Questions >> QTP Interview Questions
 
  H1B Visa Interview Questions (1)   Accounting AllOther Interview Questions (1)   WebMethods Interview Questions (1)
  Oracle Apps Financial Interview Questions (1)   CRM General Interview Questions (1)   SAP ALE IDocs Interview Questions (1)
  SAP Security Interview Questions (1)   Business Warehouse Interview Questions (3)   HR Interview Questions (13)
  FI CO Interview Questions (6)   SD Interview Questions (20)   ABAP Interview Questions (59)
  Basis Interview Questions (5)   Cognos Interview Questions (4)   Business Objects Interview Questions (2)
  Java Related AllOther Interview Questions (1)   Weblogic Interview Questions (1)   DB2 Interview Questions (2)
  CICS Interview Questions (1)   Test Cases Interview Questions (3)   QA Concepts Interview Questions (3)
  Manual Testing Interview Questions (18)   QTP Interview Questions (10)   WinRunner Interview Questions (1)
  Unix AllOther Interview Questions (1)   Unix Commands Interview Questions (2)   Oracle General Interview Questions (2)
  Dot Net Framework Interview Questions (1)   ASP.NET Interview Questions (1)   Visual Basic Interview Questions (1)
  CGI Perl Interview Questions (1)   OOPS Interview Questions (1)
 
Back to Questions Page
Question   What is the D/B Test managemet tool and bug trcking tool? Ans send to pbr.qtp@gmail.com Rank Answer Posted By  
 Interview Question Submitted By :: Pbr.qtp
I also faced this Question!!   © ALL Interview .com
Answer
Bug tracking tool is a tool which helps you to organize the
issue's you find in testing.so that same can be checked
while re-testing or regression testing.so that your system
is error free.

It can also be used to prioritize the issue the development
team needs to fix.

In manual testing - bugzilla,VM's issue tracker is used
In Automation testing - realted test managment tool is used.
 
0 Vijay
 
 
Question   Will QTP Support Japanese Language? Rank Answer Posted By  
 Interview Question Submitted By :: Deepa
I also faced this Question!!   © ALL Interview .com
Answer
s qtp supports japanis language
 
0 Venurao
 
 
Answer
Whenever we want 2 test the Localization Testing.
QTP support Japanese and English languages.
But when u instal QTP.
U will select the Languages Option 
Is it correct?
 
4 Bhaskar
 
 
 
Question   Can u call txt extension file in QTP? Rank Answer Posted By  
 Interview Question Submitted By :: Ajreddy
I also faced this Question!!   © ALL Interview .com
Answer
we can .txt extension files.
using file system object we can call the .txt files.

for example:

set a=createobject("scripting.filesystemobject")
set b=a.opentextfile("path of the *.txt file",mode)
1-read mode, 2- writing mode and 8- append mode

using 2 lines u can call the particular txt file.

if u have any quarry plz call me or mail me i will explain 
u.
raju.ippali@gmail.com
9823257761
 
0 King
 
 
Answer
Yes, We can do. We can call .txt file which contains 
vbscript or qtp automation objects.

To do that use SystemUtil.Run "give your .txt file path"

Thanks,
Nims
 
0 Nimesh
 
 
Question   Can abody explain me Send keys concept Rank Answer Posted By  
 Interview Question Submitted By :: Ajreddy
I also faced this Question!!   © ALL Interview .com
Answer
Send Keys: Sends one or more keystrokes to the active 
window.

There are two types of Sendkeys are available in QTP.

1. Sendkeys Method(CustomServerBase)
2. Sendkeys Method(IMICDeviceReplay)
 
0 Nath .t
 
 
Question   Which object model ur used in ur project Rank Answer Posted By  
 Interview Question Submitted By :: Nani
I also faced this Question!!   © ALL Interview .com
Answer
component object model.
ie ADO(active data object)

com model is one of the interface.
 
0 Raja
 
 
Answer
component object model
ADO(Active data object)
com is one the interface model



(if u find any new mail me bobbyporika@yahoo.co.in)
 
0 Raja
 
 
Question   why qtp supports vbscript? and not for others just like cgi,phython,shell,perl,html and all.. Rank Answer Posted By  
 Interview Question Submitted By :: Shivani
I also faced this Question!!   © ALL Interview .com
Answer
QTP support only Windows OS based application not Unix 
based os applciation.
 
0 Jony
 
 
Question   What is the use of sendkeys.In which cases we Use this sendkey.Pls explain with example. Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
Sends one or more keystrokes to the active window (as if 
typed on the keyboard).

syntax:object.SendKeys(string)
 
0 Pranitha
 
 
Question   can u write one user defined function for webedit class. Rank Answer Posted By  
 Interview Question Submitted By :: Nanda.d
I also faced this Question!!   © ALL Interview .com
Answer
i think a lot of time about this question .but i did 'nt 
get sorry....
 
0 Krishna Madiga
 
 
Answer
Public function edit(name)
Browser("yahoo").Page("yahoo").Webedit("User Id").set name
End function

Call edit("Murali Raju")
 
0 Murali Raju
 
 
Answer
'@generic function for Webedit
'@ arguments to pass values
Function WebEdit(sValue,sItem)
set Edit=description.create()
Edit("micclass").value="webedit"
set
basepage=Browser("micclass:=Browser").page("micclass:=Page").childobjects(Edit)
sCount=basepage.count
for i=1 to sCount
Edit=basepage(i).getroproperty("name")
if sValue=Edit then
basepage(i).set sItem
exit for
end if
next
end function
'@ call
WebEdit "Editbox name", "value of edit box"
 
0 Adlajaipal
 
 
Answer
Gneric Function for WebEdit
Values strBrow,strPAge come from object repository
Value strEditboxName is the one which we get on spying the 
object and getting its property name.
Value strVal is the one which we want to set in Edit box

function fg_SetValueinEditbox
(strBrow,strPage,strEditboxName,strVal)
set oD = Description.create
    oD("micclass").value = "WebEdit"
set strEbox = Browser(strBrow).Page(strPage).Chilobjects(oD)
For iCnt=0 to strEbox.count-1
  strName = strEbox(iCnt).GetROProperty("name")
If strcomp(strName,strEditboxName,1) = 0 Then
   strEbox(iCnt).set strVal
   Exit for
End if
Next
End Function
 
0 Sunitha
 
 
Question   Hi, how can we retrieve a specific value from Excel Sheet (Not datatable. for externel file).i mean to say from .xls file. and also tell me from xml file and .doc file. and how can u parameterize ur script from .xls file.(Not data table). Rank Answer Posted By  
 Interview Question Submitted By :: Nanda.d
I also faced this Question!!   © ALL Interview .com
Answer
Hi I can divide  ur question in to 3 parts
1.	for xls file
2.	for xml file
3.	for doc file

1.	For xls it is 
      GetCellData (Row, Column) 
2.	For XML
      XMLFile(description).GetData
3.	For Doc file it is 
ReadLine( )


Any more querys in this then feel free to mail me to 
testingwithshyam@gmail.com
 
0 Shyam
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

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