Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Script20.rxtst =================================================================== diff -u -r811b4eb3c65fc8c315cb7e8a9fbb49a5c3d0b2c5 -rb98b515a9c3cb7cfbeb827ab26eecaa487cae423 --- System tests/AutomatedSystemTests/AutomatedSystemTests/Script20.rxtst (.../Script20.rxtst) (revision 811b4eb3c65fc8c315cb7e8a9fbb49a5c3d0b2c5) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/Script20.rxtst (.../Script20.rxtst) (revision b98b515a9c3cb7cfbeb827ab26eecaa487cae423) @@ -362,6 +362,7 @@ Index: System tests/AutomatedSystemTests/RanorexAutomationHelpers/UserCodeCollections/PropertiesPanelHelpers.cs =================================================================== diff -u -r811b4eb3c65fc8c315cb7e8a9fbb49a5c3d0b2c5 -rb98b515a9c3cb7cfbeb827ab26eecaa487cae423 --- System tests/AutomatedSystemTests/RanorexAutomationHelpers/UserCodeCollections/PropertiesPanelHelpers.cs (.../PropertiesPanelHelpers.cs) (revision 811b4eb3c65fc8c315cb7e8a9fbb49a5c3d0b2c5) +++ System tests/AutomatedSystemTests/RanorexAutomationHelpers/UserCodeCollections/PropertiesPanelHelpers.cs (.../PropertiesPanelHelpers.cs) (revision b98b515a9c3cb7cfbeb827ab26eecaa487cae423) @@ -49,6 +49,8 @@ var step = stepsPathItem[i]; var completeList = argumentAdapter.As().Rows.ToList(); var searchList = completeList.GetRange(minimumIndex, completeList.Count-minimumIndex); + var kk = searchList.Where(rw => rw.GetAttributeValue("AccessibleName").Contains(step)); + var kk2 = searchList.Select(rw => rw.GetAttributeValue("AccessibleName")); var indexStepRow = searchList.FindIndex(rw => rw.GetAttributeValue("AccessibleName").Contains(step)); stepRow = searchList[indexStepRow]; stepRow.Focus();