Does TestComplete support Oracle Forms?
A.: With TestComplete, you can test Oracle forms just as you would test Java applications. Please see the “Testing Java Applications” topic. However, testing Oracle forms has a number of peculiarities. I recommend that you use the following techniques: • Oracle forms can often contain several objects that have the same name, so you need to address the objects by their class name, caption and index. To do this, disable the Use native object names for TestComplete object names setting in the Open Applications option of the Project Properties edit page. See the “Project Properties – General Open Applications Options” help topic for more information. • Use the AWTObject and WaitAWTObject methods to obtain the needed objects. For example, testObj.AWTObject(“DrawnPanel”, “”, 0).AWTObject(“Button”, “”, 0). Also, you can use the Find method to search for the needed object in the object hierarchy. Please see the “Window.AWTObject”, “Window.WaitAWTObject” and “Find Method” help topics.