Forum Discussion
Hi,
I experienced this problem with a Delphi program which wasn't compiled with debug info.
With the debug info, I have access to the elemets behind the grid such as Dataset and I'm able to browse in its records.
If you need to keep a version of your software without debug info, see if you could build at the same time a debug-info free version and the debug info file besides it.
So when you will want to run Test Complete, you'll just have to put it in the same folder than your soft executable.
Mehdi
I have added grid::CGridImpl class under Rogue wave Stingray C++ in object mapping. I am able to access clickCell and other methods like clickRowIndiactor, clickColumneader etc.. method. (in intellecense it shows all these methods)
I tried directly using clickCell method on grid but its giving sntax error for this method.
set wGrid = Aliases.SisXV.wndsisXVFrame.BCGPControlBare87c000081000310.BCGPTabWnde87c000081000310.BCGPControlBare87c000081000310.AfxWnd100u.Afx.BCGPTabWnde87c000081000310.page32770.GridContainer.GXWND
wGrid.ClickCell(0, "Object ID")
Eventhough I give column name or column index its giving syntax error.
Is it not possible to directly use this clickCell method on grid? But on smart bear site and forums I have seem such line of code.
I will try to compile the application with debug info as you suggested. I am getting error for colum count and row count. I only want to click on the first cell. Is there any other workaround for the issue?
Also i want to know that how to identify that application is enabled with debug info or not?