Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/GetValueParameterInPropertiesPanelGivenPath.cs =================================================================== diff -u -r811b4eb3c65fc8c315cb7e8a9fbb49a5c3d0b2c5 -rf8a0eced0108e7ef0a226cc7fc2128828cffba15 --- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/GetValueParameterInPropertiesPanelGivenPath.cs (.../GetValueParameterInPropertiesPanelGivenPath.cs) (revision 811b4eb3c65fc8c315cb7e8a9fbb49a5c3d0b2c5) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/GetValueParameterInPropertiesPanelGivenPath.cs (.../GetValueParameterInPropertiesPanelGivenPath.cs) (revision f8a0eced0108e7ef0a226cc7fc2128828cffba15) @@ -66,7 +66,7 @@ AutomatedSystemTestsRepository myRepository = global::AutomatedSystemTests.AutomatedSystemTestsRepository.Instance; Adapter propertiesPanelAdapter = myRepository.RiskeerMainWindow.ContainerMultipleViews.PropertiesPanelContainer.Table.Self; - Ranorex.Row row = PropertiesPanelHelpers.GetRowInPropertiesPanelGivenPath(pathToElementInPropertiesPanel, propertiesPanelAdapter); + var row = PropertiesPanelHelpers.GetRowInPropertiesPanelGivenPath(pathToElementInPropertiesPanel, propertiesPanelAdapter); valueOfElement = row.Element.GetAttributeValueText("AccessibleValue"); } } Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Set_Assign/SetValueParameterInPropertiesPanelGivenPathTypeAndNewValue.cs =================================================================== diff -u -r811b4eb3c65fc8c315cb7e8a9fbb49a5c3d0b2c5 -rf8a0eced0108e7ef0a226cc7fc2128828cffba15 --- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Set_Assign/SetValueParameterInPropertiesPanelGivenPathTypeAndNewValue.cs (.../SetValueParameterInPropertiesPanelGivenPathTypeAndNewValue.cs) (revision 811b4eb3c65fc8c315cb7e8a9fbb49a5c3d0b2c5) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Set_Assign/SetValueParameterInPropertiesPanelGivenPathTypeAndNewValue.cs (.../SetValueParameterInPropertiesPanelGivenPathTypeAndNewValue.cs) (revision f8a0eced0108e7ef0a226cc7fc2128828cffba15) @@ -76,7 +76,7 @@ AutomatedSystemTestsRepository myRepository = global::AutomatedSystemTests.AutomatedSystemTestsRepository.Instance; Adapter propertiesPanelAdapter = myRepository.RiskeerMainWindow.ContainerMultipleViews.PropertiesPanelContainer.Table.Self; - Ranorex.Row row = PropertiesPanelHelpers.GetRowInPropertiesPanelGivenPath(pathToElementInPropertiesPanel, propertiesPanelAdapter); + var row = PropertiesPanelHelpers.GetRowInPropertiesPanelGivenPath(pathToElementInPropertiesPanel, propertiesPanelAdapter); row.SetValue(newValueForParameter, typeParameter); } } Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Validation/PropertiesPanel/ValidateDoubleValueparameterInPropertiesPanelGivenPath.UserCode.cs =================================================================== diff -u -r345c025ca78c7daa105cd8583632b9bdcab59348 -rf8a0eced0108e7ef0a226cc7fc2128828cffba15 --- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Validation/PropertiesPanel/ValidateDoubleValueparameterInPropertiesPanelGivenPath.UserCode.cs (.../ValidateDoubleValueparameterInPropertiesPanelGivenPath.UserCode.cs) (revision 345c025ca78c7daa105cd8583632b9bdcab59348) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Validation/PropertiesPanel/ValidateDoubleValueparameterInPropertiesPanelGivenPath.UserCode.cs (.../ValidateDoubleValueparameterInPropertiesPanelGivenPath.UserCode.cs) (revision f8a0eced0108e7ef0a226cc7fc2128828cffba15) @@ -42,7 +42,7 @@ fixedDataSourceCulture.NumberFormat.NumberGroupSeparator = ""; System.Globalization.CultureInfo currentCulture = CultureInfo.CurrentCulture; - Ranorex.Row row = PropertiesPanelHelpers.GetRowInPropertiesPanelGivenPath(pathToRowInPropertiesPanel, propertiesPanelAdapter); + var row = PropertiesPanelHelpers.GetRowInPropertiesPanelGivenPath(pathToRowInPropertiesPanel, propertiesPanelAdapter); string currentValueString = row.Element.GetAttributeValueText("AccessibleValue"); double currentValueDouble = Double.Parse(currentValueString, currentCulture); double expectedValueDouble = Double.Parse(expectedValueString, fixedDataSourceCulture); Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Validation/PropertiesPanel/ValidateTextValueInPropertiesPanelGivenPath.cs =================================================================== diff -u -r345c025ca78c7daa105cd8583632b9bdcab59348 -rf8a0eced0108e7ef0a226cc7fc2128828cffba15 --- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Validation/PropertiesPanel/ValidateTextValueInPropertiesPanelGivenPath.cs (.../ValidateTextValueInPropertiesPanelGivenPath.cs) (revision 345c025ca78c7daa105cd8583632b9bdcab59348) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Validation/PropertiesPanel/ValidateTextValueInPropertiesPanelGivenPath.cs (.../ValidateTextValueInPropertiesPanelGivenPath.cs) (revision f8a0eced0108e7ef0a226cc7fc2128828cffba15) @@ -65,7 +65,7 @@ { var repo = AutomatedSystemTests.AutomatedSystemTestsRepository.Instance; var table = repo.RiskeerMainWindow.ContainerMultipleViews.PropertiesPanelContainer.Table.SelfInfo.CreateAdapter