Recently I have upgraded the Telerik Testing Framework to the latest freely available version - TestingFrameworkFree.2015.2.723.but now my solution is full of errors related to the FindElementException class or ArtOfTest.Common. Exceptions namespace. It does not locate the namespace. I even search the Object Explorer but not able to locate there as well.
Have you guys removed the FindElementException class or ArtOfTest.Common. Exceptions from the latest version. If yes, why? If no, how should I locate this?.
What is the difference between FindElementException and FindException?
Thanks and Regards
Vinay
Hi,
As part of CI process, we are looking forward to execute Telerik test scripts through Teamcity9,
This thread is to know whether anyone tried this combination already. In that case i can get information without browsing.
Thanks,
VVP
Hello everybody,
has anyone managed to find Ribbon elements using wpfApp.MainWindow.Find.ByName(....)?
I can find the ribbon element itself, bit sub elements like "RibbonApplicationMenuItem" or "RibbonButton" cannot be found by neither name nor type.
Any suggestion is welcome!
Greets
Andreas
I had problems running my UI test in Visual Studio so I attempted to reinstall the Telerik testing framework. I did the following...
Tried uninstall Telerik 2015.1 (Failed)
Tried repairing Telerik 2015.1 (Failed)
I manually removed the installed files for Telerik as described in several forums and then tried the above (Failed)
Uninstalled Visual Studio then...
Tried installing the new version of Telerik 2015.2 (Failed) attached is the screenshot and logs
So in short I simply cannot installed the testing testing framework. Any help would be most appreciated.
I am trying to create a custom HTML control for the h3 tag and am having trouble. I'm using the thread http://www.telerik.com/forums/custom-web-controls for a reference but am unable to get it to work. I'm using the Find.ByAttributes<HtmlH3>("class=~someclass") but am not receiving only h3 elements. Here is my code:
public class HtmlH3 : HtmlControl
{
ArtOfTest.Common.IFindExpression _locatorExpression;
public HtmlH3(Element element) : base(element)
{
_locatorExpression = new HtmlFindExpression("tagname=h3");
}
public HtmlH3() : base()
{
_locatorExpression = new HtmlFindExpression("tagname=h3");
}
public override ArtOfTest.Common.IFindExpression LocatorExpression
{
get { return _locatorExpression; }
}
}
Help would be greatly appreciated. Thanks
Hi,
I was wondering if it was possible to test the column headers in an excel sheet or PDF as part of the "Handle 'Download' dialog" command?
A large part of our product is report based, so it would be invaluable for us to be able to use test studio to verify field headers.
Regards
Tom