I dont know how to configure non standard objects to
standard objects in QTP9.2 can i have someone explain me in
breify?
Answer Posted / venkat reddy bandaru
we can use virtual object wizard to handle non standard
objects.
when u select virtual object wizard,it will provide u +
(Add Button)symbol,u can select required non standard
objectlike button,object etc., it will
gather the boundary values of the objectand give the
speccific name and save it.
After that QTP will automatically handle.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Please provide specific examples of advanced/creative usage of QTP, including how impact & benefits for your project
What are the recording modes in qtp?
Which scripting language used by quicktest professional (qtp)?
Why is action split used by qtp?
How many types of trigger events are there in qtp?
Will down time for server and content maintenance/upgrades be allowed? how much?
What is the difference between call to existing action and copy of an action?
When do go for loop condition in test?
What is the difference between a Function and Action in QTP?
I want to open a Notepad window without recording a test and I do not want to use System utility Run command as well. How do I do this?
How to handle dynamic objects in quicktest professional (qtp)?
How you calling actions in qtp?
whare exactly we have to use functions and sub routain
Please guide me release notes of Automation once scripts are completed
How can we retrieve the Bug Ids which are open&Reopen in status through QTP scrit?Please find the script which i tried... Dim objBugFactory, objBug Dim BugId Set TDConnection = QCUtil.TDConnection Set objBug = TDConnection.BugFactory If QCUtil.IsConnected then Reporter.ReportEvent 0, "Connected", "Connected to server: " + QCUtil.TDConnection.ServerName + chr (13) +"Project: " + QCUtil.TDConnection.ProjectName + chr (13) + "Domain: " + QCUtil.TDConnection.DomainName Reporter.ReportEvent 0, "Current time on server is","==>" & TDConnection.ServerTime Else Reporter.ReportEvent 1, "Not connected", "Not connected to Quality Center" End If If mybug.Status="Open" Then BugId=mybug.DefectId MsgBox BugId End If 'OR**********************************--------------------- -----********************************** If Bug_Fields("BG_STATUS").Value ="Open" Or "Re Open"Then BugId=Bug_Fields("BG_BUG_ID").Value MsgBox BugId End If