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
Hello,
I am working on a project totally focused on managing cookies (getting and setting cookies from browsers). I am using the latest version of test framework "Telerik test studio automation 2013.2.1519.1" under firefox. All setups are OK.
So the problem consists in the domain of a cookie: I can't add a cookie with a domain ".example.com" in the browser, thus all dervied urls (example.com, art.example.com,www.example.com, any.other.example.com) will read that cookie.
The cookie domain cases that succeded are : "www.example.com", "example.com", "http://www.example.com"
But, whenever I add a cookie with "www.example.com", in the browser the cookie will be added "www.example.com" not ".example.com".
My main goal is to have all cookies loaded in the browser with ".example.com".
Thank you.