Hi,
We have begun using Test Studio with Angular 13. We use Kendo UI for Angular as our control set.
When we record a step, the picker is often unable to pick the actual element. For example, regard this UserName form field. It's wrapped in many Kendo elements. The picker in the Recorder can't find the Input text box, but rather only the "FormField" element since it's at the top.
<kendo-formfield>
<kendo-floatinglabel text="User Name">
<kendo-textbox
name="txtUserName"
title="User Name"
formControlName="userName"
kendoTextBox
required
autocomplete="username"
></kendo-textbox>
</kendo-floatinglabel>
<kendo-formerror id="lblRequired1">Required</kendo-formerror>
</kendo-formfield>
Is there a guide on how to setup our Angular Kendo controls so that the Recorder can find the value of the Text box?