This question is locked. New answers and comments are not allowed.
Hi Team,
We are using VS Coded UI test Framework to test our applications developed with Teleric. We have an application which is using RadDatePicker control from 2014 Q1 release. While automating with CUIT we have noticed that this DatePicker control is identified as Custom control. We would like CUIT to be identifying this control as DatePicker type. So that inorder to set date on the control we can make use of DateAsString property on it [while automating].
We are using CUIT from VS2012 with update2.
Following is the xaml for the sample application on which we can repro the issue:
We are using VS Coded UI test Framework to test our applications developed with Teleric. We have an application which is using RadDatePicker control from 2014 Q1 release. While automating with CUIT we have noticed that this DatePicker control is identified as Custom control. We would like CUIT to be identifying this control as DatePicker type. So that inorder to set date on the control we can make use of DateAsString property on it [while automating].
We are using CUIT from VS2012 with update2.
Following is the xaml for the sample application on which we can repro the issue:
<
Window
x:Class
=
"TelerikWpfApp1.MainWindow"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
Title
=
"MainWindow"
Height
=
"350"
Width
=
"525"
>
<
Grid
>
<
telerik:RadDatePicker
HorizontalAlignment
=
"Left"
Margin
=
"149,115,0,0"
VerticalAlignment
=
"Top"
Width
=
"100"
/>
</
Grid
>
</
Window
>