How extensive or customized are the server logging and reporting requirements; are they considered an integral part of the system and do they require testing?
No Answer is Posted For this Question
Be the First to Post Answer
How to retrieve the data from database?
Where to use Property Let, Property Get, Property Set in UFT
we have one text box and one list box(list box appear in same page or another page) what ever the text enter in text box that must be displyed in list box as first one. for example if we enter 10 in text box that is the 1st item in list box . after that we enter 11 then 11 is the 1st item and 10 is 2nd item. the maximum limit of list box is 10 items. if we enter 11th item the 10th item is deleted and llth one is add as 1st one and 9th one goes to 10th position
what are the Common Problems in S/w development process
What is the main differece between QTP 9.0 and 9.2
What is smart identification?
Can any one explain about environment variables with examples?
Explain me in deatail about DATADRIVEN framework including scripts ?(realtimes plz)(Chandana)
what is the diff between manual test plan document and automation test plan doc.can u explain indetail.
What is the dis advantage of check points in QTP, if any?
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
What are the properties you would use for identifying a browser & page when using descriptive programming ?