[TestMethod, Description("This is test.")] public void CbRegression_SmartTag_LoginTest() { Manager.LaunchNewBrowser(BrowserType.InternetExplorer); ActiveBrowser.NavigateTo("http://news.google.com/"); }
Hi,
I would like to know telerik testing framework supports the automation of qlikview documents, charts etc. If so please provide some examples
Hi support,
Greeting of the day!!.
I want to launch the chrome browser with some specified flags using telerik testng framework LaunchBrowser() method.
flags == --js-flags="--expose-gc
Is it possible to launch the browser with flags?
Please look into this.
Thanks & Regards
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);
I am not getting any data using the above approach.
Please look into this nd let me know the way to capture the data using jquery.
Thanks & Regards

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);

Hi Team,
I would like to know can we handle Telerik and Kendocontrol using Selenium. If it possible means please share the document to explore.


Hi telerik,
I am working on a scenario where i have to access the value using jquery.
<div id="automation-testing">
<div class="client-errors"></div>
<div class="menus"></div></div>

