I want to do Certification course in QTP. For this I
request you to suggest the best Tutorial in PDF format, as
i'm not in a possition to afford any 'Fee' to join in any
institutions.
Hence, if possible, kinldy mail PDF file to my mail-ID:
chakri_avala@yahoo.co.in
Regards,
Chakradhar Yadav.
Answer Posted / anilvasanthi
I also want the details of QTP certification..can any one
please
send it to my mail
Anilqa@gmail.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How many types of parameters are there?
what type of values given to objects. EX::Set oBrowser=Description.Create oBrowser(“micclass”).Value=”Browser”
How many ways we can parameterize data in quicktest professional?
How can I open a EXCEL file from QTP Resultviewer with reporter.ReportEvent function call. Example: Test files for details click "here". And clicking "Here" in the resultviewer will open a local EXCEL FILE.
in qtp 3 sheets is there in data table like global, action1, action2. I want to check the rows and columns in action2. how can check using script?
How do you know the location Id of an object if you know its index id?
How can we conduct U-I Testing by using QTP??????
How many add-ins comes by default with qtp?
why you have standardized functions? plzzz guys with real time exp. do answer
Describe how Smart Identification is used
When I click on a link in web page.Link should open in new window.can anyone please let me know the script for this ---Koti
What is qtp window?
What will be happen if i load object repository at run time, but it has already associated.
What is RTM (require ment tracebulity marix) fromate?
I have written a code to fetch values fro access db and place in the fields. Iam using GetROProperty to fetch runtime values. Now i want to add runtime values to the access db in field v3. please help me. Its not writting in the db. Option explicit Dim con,rs,db,c Set con=createobject("adodb.connection") Set rs=createobject("adodb.recordset") con.Open "Driver={Microsoft Access Driver (*.mdb)};dbq=D:\Sales.mdb" rs.open "select * from tax",con Do while not rs.eof Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("incost").Set rs.fields("v1") Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("intax").Set rs.fields("v2") c=Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("outtax").GetROProperty("value") rs.MoveNext print c Loop Do while not rs.EOF rs.EditMode rs.Fields("v3").Value="3" rs.Update rs.MoveNext Loop Set rs=nothing Set con=nothing