In Test Directory, What are the contents in test case
designing? if you prepare in excel sheet how u use thrw
Test Directory?
No Answer is Posted For this Question
Be the First to Post Answer
Why bpt?
where is the bitmap checkpoint be saved
what questions i have to pripare for project manager round interview ? plz give Ans.(Chandana)
CAN WE USE 'BVA' AND 'ECP' IN AUTOMATION?
Hi Friends this is kumar i would like to request to all of you ,please help me to explain real time project with using qtp scripts i know basics of qtp but it won't workout on interviews,pls help awating to reply.
For an application we automated QTP scripts. At the same time new requirement comes for a new module for the same application and its already developed. So how we automated now this new module with the old application(using old QTP script).
i am entering wrong data or wrong password in a text box and click on submit button .i am getting a popup window with a message Please enter the correct password or data .How can i handle this situation by using QTP.
Give me diffrent script in QTP for Webpage(Java and .Net),WindowsBased Applications,Java application,.Net application...
What is method name to compare two XML files.
write a VBscript code to parametrize test script using test data from sqlserver database?
why the smart identification is not there in WinRunner
Hi I have created a table in the MS access database. I want to access the table in this database through QTP. The code is given below. The code is not working.The following error is displayed "Data source name not found and no default driver specified". Any one can correct the code. Thanks in advance. Dim dbconnection, rs Dim ca, sname Set dbconnection = createobject("ADODB.Connection") Set rs = createobject("ADODB.Recordset") dbconnection.open "DSN = MS Access Database","", "" rs.open "select * from Research", dbconnection rs.movefirst If rs.EOF <> True AND rs.BOF<> True then ca = rs("order_number") sname = rs("customer_number") rs.movenext msgbox ca msgbox sname End If