Micro Focus QTP (UFT) Forums

Full Version: QTP not recognizing WBFULTRAGRID
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am testing a .Net application with a WBFULTRAGRID. QTP dose not recognize the grid. Simply ignores it. Any suggestions on how to enter data in the grid ?




Thanks,
Raj
What does it mean by it ignores ?
When you spy what type of the object does it identify as ?
Adding to Basanth's post

It looks like, QTP is not "ignoring" but identifying something else and not the required element. Use

Code:
object.Highlight

to find out which grid is getting recognized

PS: .Highlight is an undocumented method in QTP
Thanks for the response.

Basanth: Ignores meaning, QTP sees the object, but dose not do the intended action.

Ankur:
The object is identified as WBFULTRAGRID.

The grid has embedded edit boxes, drop-downs, check boxes…..
When playing back the script, QTP clicks on the edit box but dose not enter text. I tried using SetCellData.

Set for Edit boxes or Select for drop-downs do not work.

Our application uses .Net Web Forms.

Thanks,
Raj
Try the Type method to enter the text. Does that work ?
Type is no use.
I have the DLL to that object, can I use it somehow?