Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Unable to read the cell value in "infragistics.win.ultrawingrid.ultragrid" and "infragistics.win.ultrawintree.ultratree"
posted

Hi ,

Currrently we are working on RFT 8.2 ,with infragistics test advantage addin 8.2 (licensed) for windows forms.While performing automation testing we are unable to capture the cell values(innertext) in the grid table. Class name is showing as "infragistics.win.ultrawingrid.ultragrid" however we are unable to read the text property value of each cell using the methods available

Could you please help us to resolve this problem.Let me know if you need any information.

Parents
  • 6729
    Suggested Answer
    Offline posted

    Try using GetNAProperty:

    GridTestObject().GetNAProperty("Rows[0].Cells[0].Value")

    You can also use the GetCell method which return a HashtableEx object with alot of information about the cell:

    GridTestObject().GetCell(AtCell(AtRow(...), AtColumn(...)))

    Let me know if you have any other question.

    Ammar

Reply Children