I am working on issue where the user copies text from Microsoft Word to this Telerik Textbox and the format gets messed up. Only happens in the IE browser. Anyone else run into the same issue?
Thanks,
Nia


Hi
I am struggling to access Kendo Date Picker from a code step in Test Studio.
KendoCalendar calendar = ActiveBrowser.Find.ById<KendoCalendar>("expiryDate");I want to set the date from the code step ( I am iterating over a predefined expiry values)
but I always get NULL and nothing is returned.. any idea why ? Test Studio version 2016 (downloaded it last week)
My jsp has the following:
.....
<input type="text" id="expiryDate" style="width:180px;"
serializedDate="${message.getExpiryDate().getTime()}"
name="expiryDate"
required
data-expiryDateInPast-msg="<s:message code='admin.managemessage.validation.expiryDate.inpast'/>"
validationMessage="<s:message code='admin.managemessage.validation.expiryDate.empty'/>"
/>
...
...
$("#expiryDate").kendoDatePicker({ }).on('keydown',function(evt){ if(evt.keyCode == 9) { return true; } return false; }).on("paste",function(e) { e.preventDefault(); });...
...
Hello
I hope you can help - I am trying to record and playback tests on Aurelia, a SPA Framework that we have started using but, when i play back the test - it cant find any of the elements or properties in the DOM so fails.
Any help you have would be greatly appreciated!
Thanks
Maria
I am supporting a tester who does not seem to be able to access the Internet using the Test Studio application. He is using a dedicated domain test user account to logon to test studio and I have verified that this user can gain access to the internet via a browser, however when the tester tries to run a test with an IE browser it is as though he cannot gain access to the internet through our web appliance and he is getting 'page cannot be displayed' message.
I have looked for areas in the software where a web proxy could be configured but have found no setting for it. He is using version 2015.1
Hi there,
In the code-behind I like to be able to invoke a click on a menu item and find this menu-item by name or automation-id. By adressing the elements by name you do not have problems when you add menu items.
I can give the RadMenu a name and find it with Find.ByName. However If I give a RadMenuItem a name it does not show up in the DOM tree.
Antoher solution might be to loop trough the RadMenuItems but still I like to be able to adress one of them.
Do you know a solution?
Thanks,
Richard
how to find nested elements within the ArtOfTest.WebAii.ObjectModel.Element.
I want to a span element within a form. The form has a unique attribute, span element does not have unique attribute. We cannot go by TagIndex, since the content is dynamic.
We would like to use Element objectmodel and not HtmlControl type. The element has the property FindUsedExpression, but there is no option to find the nested element.
sample code:
Element parent = Manager.ActiveBrowser.Find.ByExpression(parentattribute); // parent
if (parent != null) {
Htmlcontrol control = parent.As<HtmlControl>();
HtmlControl child = control.Find.ByExpression<HtmlControl>(childattributes); // child ---- i don't want
if (child != null) {
child .Focus(); // focus;
}
}
regards
govind
The Element EnumerationType returns value "Other" for <form></form> in version 2016.1.330
As per the Enumeration Type should return a value of 19 for <form>
When we use the Element.TagName returns the element form.
This seem to be a bug in the release.
Has anyone else had problems with Visual Studio after installing v. 2016.1.330 of Test Studio??
I am on the 30 day trial at present. After installing the new release, I started encountering fatal problems in Visual Studio when trying to load solutions, where previously I had not had such issues.I had to close VS down for 'not responding' and tried it again several times. After uninstalling Test Studio, Visual Studio was back to its previous level of behaviour, and I could actually load projects / solutions.
Looking at the Windows Event Viewer, there were many errors relating to Art of Test.... just wondered if anyone had experienced anything similar.