| 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 |