ContributionsMost RecentMost LikesSolutionsRe: How to turn off Test Visualizer before recording Thank you, Justin! I need to get better at searching! How to turn off Test Visualizer before recording How/Where to turn off Test Visualizer before recording a test? Is there a way to permanently turn it off? SolvedRe: Desktop Telerik Gridview - How to get cell's value So, I found that if the Telerik Gridview's Cell is editable, I had to double-click on the cell to put it in edit mode, then I was able to get the nValue. If the Gridview Cell was read-only, the cell was 'NEVER' highlighted by the object identifier, but that I could use the checkpoint - Extra properties - nValue - and put in the row column location. This method doesn't work with an editable cell because the nValue property doesn't exist. I thought that was odd. I know I'm new to TestComplete (been programming for 30 years though), and might be missing something. Desktop Telerik Gridview - How to get cell's value I have the following code, but wValue is not recognized. How do I get a cell's value from a Telerik Datagrid? GridCellValue = Aliases.Purchasing.frmPurchasingMenu.MdiClient.frmPoShipDateMaint.pnlData.tabMain.tpgTracking.RadGroupBox5.dgvTracking.wValue(0,2) Unable to find the object wValue(0, 2). See Details for additional information. 18:09:07 Normal 11.27 SolvedDesktop Scripting - How to throw an error Hello! I'm brand new here! Love this tool but I must convince my company based on a proof of concept. So, my simple question is, how do you throw an error based on your own test? GridCellValue = Aliases.Purchasing.frmPurchasingMenu.MdiClient.frmPoShipDateMaint.pnlData.tabMain.tpgTracking.RadGroupBox5.dgvTracking.wValue(0,2) 'row, column If GridCellValue <> "167 AAA Cooper" Then 'throw an error End If GridCellValue = Aliases.Purchasing.frmPurchasingMenu.MdiClient.frmPoShipDateMaint.pnlData.tabMain.tpgTracking.RadGroupBox5.dgvTracking.wValue(1,2) 'row, column If GridCellValue <> "1234567890" Then 'throw an error End If Solved