Hi there,
I'm evaluating Test Studio for our company's testing needs, and have a question about a specific test scenario.
I'm trying to record a test involving adding an item to a Kendo List View that has a Kendo Editor defined in its edit template. I am unable to get the "click" or "typing" into the editor to be recorded as part of the test. All other aspects of the test scenario (typing into other kendo controls on the edit form, clicking submit, etc) are recorded and execute as expected.
I am using the Kendo ASP.NET MVC Wrappers (2014.3.1411) and recording tests in Internet Explorer 11.
My list view editor template is defined as
<
div
class
=
"k-edit-form-container"
>
@( Html.Kendo().EditorFor(i => i.Body)
.Tools(tools =>
{
tools.Clear();
tools.Formatting();
tools.Separator();
tools.Bold();
tools.Italic();
tools.Underline();
tools.SuperScript();
tools.SubScript();
tools.Separator();
tools.JustifyLeft();
tools.JustifyCenter();
tools.JustifyRight();
tools.JustifyFull();
tools.Separator();
tools.InsertUnorderedList();
tools.InsertOrderedList();
tools.Indent();
tools.Separator();
tools.CreateLink();
tools.InsertImage();
}).StyleSheets(style =>
{
style.Add("/Content/BasicStyles.css");
}))
<
br
/><
br
/>
<
div
class
=
"edit-buttons"
>
<
a
class
=
"k-button k-button-icontext k-update-button"
href
=
"\\#"
><
span
class
=
"k-icon k-update"
></
span
>Save</
a
>
<
a
class
=
"k-button k-button-icontext k-cancel-button"
href
=
"\\#"
><
span
class
=
"k-icon k-cancel"
></
span
>Cancel</
a
>
</
div
>
</
div
>