i am using June 18th build with latest extensions and also cleared the cache
Example
	in runtime click the true value of the radio group button.
	During playback, you will see the radiogroup button is not clicked
							
						
					Example
Code:
	
	isc.DynamicForm.create({ID:"RadioButtonGroup1$gridWrap",autoFit:true,titleSuffix:" ",titlePrefix:"",
autoFocus:false,titleOrientation:"top",numCols:1,rightTitlePrefix:"",requiredTitleSuffix:"*",requiredRightTitleSuffix:"*",colWidths:["100"],
fields:
[{isBoolean:"true",valueMap:{"true":"True","false":"False"},wrap:false,type:"radioGroup",title:" ",showTitle:false,width:"*",colSpan:"1",ID:"RadioButtonGroup1",
name:"RadioButtonGroup1",vertical:false,_constructor:"RadioGroupItem"}]})
Code:
	
	selenium.click("scLocator=//DynamicForm[ID=\"RadioButtonGroup1$gridWrap\"]/item[name='$540true'][Class=\"RadioItem\"]/element");

Comment