I want to learn QTP Online, where can I get quality training?
Answer Posted / srinivasulu arepalli
G C Reddy sir is the best faculty for QTP Training, he has
launched 2 web sites for providing technical info to his old
students
1) www.gcreddy.com for QTP
2) www.gcreddy.net for Manual Testing
He is providing QTP training online with Industry oriented
content, his content and style of presentation is very
advanced and excellent. He is very good in below concepts:
1) Descriptive programming
2) VB Script
3) Automation Framework Design & Implementation
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
How do I generate Test Results window using descriptive method ( run time ) after my test execution process? Please have a look of my below code. ========================================================= Dim qtApp Dim qtTest Dim qtResultsOpt Set qtApp = CreateObject("QuickTest.Application") qtApp.Launch qtApp.Visible = True qtApp.Options.Run.CaptureForTestResults = "Always" qtApp.Options.Run.RunMode = "Fast" qtApp.Options.Run.ViewResults = True qtApp.Open "C:\Automation\Example", True Set qtTest = qtApp.Test qtTest.Settings.Run.OnError = "NextStep" Set qtResultsOpt = CreateObject ("QuickTest.RunResultsOptions") qtResultsOpt.ResultsLocation = "C:\Automation\Example\Res1" qtTest.Run qtResultsOpt MsgBox qtTest.LastRunResults.Status qtTest.Close Set qtResultsOpt = Nothing Set qtTest = Nothing Set qtApp = Nothing ========================================================== This code is working fine, but Test Result window is not displaying after execution. Anybody can please help me regading the same. Thanks Akshaya Madali Capgemini India Pvt Ltd 9823213538
Does quicktest professional (qtp) is unicode compatible?
Print the Prime numbers in below format only up to 20(Need commas also) 1,2,3,5,7,9,11,13,17,19
Explain how qtp identifies object?
What are parameterizing tests?
Explain in brief about the quicktest professional automation object model?
What are the challenges you faced during you entire life automation ?
Can we access the java methods in qtp. Because my requirement is to access the swt(for eclipse an it is java code) methods in qtp is it possible?
what are the limitations of smart identification in qtp 9.0
Diff b/w Health care domain and Banking Domain?
I need to obtain the parent of an object programatically, so if I have: winButton("aButton") I need to obtain the parent part: window("Window1").Dialog("Dialog1") so I can programatically create a string of the full name of the object to call it with an execute statement in QTP I would like to use something like: part[1] = "window(""Window1"")" part[2] = "dialog(""Dialog1"")" so I can do: exeLine = part[1]&"."&part[2]&"."&"winButton(""aButton"")" Execute exeLine Apart from keeping a record of the window/dialog hierarchy is there a parent or path function/ command Thanks Adrian
How you calling actions in qtp?
What is the recovery scenario in qtp?
How you are developing the script? Using record and play back or manual?
How to remove the associated function library?