Hi telerik,
I am working on a scenario where i have to access the value using jquery. This below div [class="client-errors"] contains data which i exposed using jquery.
<div id="automation-testing">
<div class="client-errors"></div>
<div class="menus"></div></div>
At my application end i am able to fetch the requested data using - "$("automation-testing div.client-errors").data(). But when i am trying to access it using telerik testing framework, i am not getting that data.
HtmlControl ctrl = Manager.ActiveBrowser.Find.ByExpression<HtmlControl>("id=automation-testing", "|", "class=client-errors");
Console.Writeline(ctrl.AsjQueryControl().val);