Telerik blogs
  • Productivity Testing

    UI Automation Testing with UIA Verify

    As I mentioned in my previous post “UI Automation/Accessibility in Silverlight 2, tools and resources summary”, UIA Verify is one of the current options for UI Automation testing of controls and applications. The tool was published by the Microsoft UI Automation team about 7 months ago and according to the release page, it was downloaded about thousand of times so far. Still, I didn’t find any public articles regarding its advantages not because the tool is useless, quite the opposite! So I decided to describe the tool’s features briefly and I hope you’ll enjoy the tutorial. First of ...
    May 27, 2021 3 min read
  • People Accessibility

    UI Automation/Accessibility in Silverlight 2, tools and resources summary

    The purpose of this post is to summarize the tools and resources for UI Automation/Accessibility testing in Silverlight 2 available at the present moment as well as to share a few details on what’s expected in the nearest future. There are a lot of resources on the web about Microsoft UI Automation framework and Active Accessibility so I’m not going to put any general information here. Still, you can refer to the list at the end of the post for additional information. The UI Automation testing tools are quite important to developers and testers (like me) that are interested in ...
    May 27, 2021 4 min read
  • Web ASP.NET AJAX

    Accessing RadControls for ASP.NET Ajax items with WatiN(by using only the html elements)

    Are you curious how to deal with the complicated rendering of RadControls and WatiN? If so, I will shed some light on this. Here is an example how to print the text of the specific node of RadTreeView and how to expand it: [STAThread] static void Main(string[] args) { IE ie = new IE("http://demos.telerik.com/aspnet/prometheus/TreeView/Examples/Programming/DataBinding/DefaultCS.aspx"); Element ulElement = ie.Element("UL", Find.ByClass("rtUL rtLines")); Element firstLiElement = ulElement.DomContainer.Element("LI", Find.ByIndex(1)); Span textSpanElement = (Span) firstLiElement.DomContainer.Div(Find.ByClass("rtTop")).DomContainer.Span(Find.ByClass("rtIn")); Console.WriteLine(textSpanElement.Text); Span plusSpanElement = (Span)textSpanElement.PreviousSibling; plusSpanElement.Click(); }   Yet another example how to click on a ...
    May 27, 2021 1 min read
  • Web ASP.NET AJAX

    Beta for Q3 2008 - RadControls ASP.NET AJAX is now available!

    We are very excited to announce the Beta of Q3 2008 for RadControls ASP.NET AJAX. These are the key areas in which we have been working in the past couple of months: Improved Performance Client-Side Features Improving Data Access MVC Support jQuery integration Right-to-Left Support Merging charting into the Telerik.Web.UI.dll Full details and download instructions are available in this forum thread. Enjoy the new bits and send us any feedback you have!
    October 17, 2008 1 min read
  • Productivity Testing

    Joining the Silverlight Testing World

    Back in late 2006 I started this blog, posting content based entirely on the ASP.NET tester’s activities. At the end of summer 2008 I was still completely focused on ASP.NET. You never know what fate will bring you in a month, what about a year or two. Since the beginning of September 2008 I joined the Telerik Silverlight team. My main responsibilities are to build the test strategy, organize the work in all terms of quality assurance and help the team of talented developers release a great suite of Silverlight controls. You have probably already seen the latest nice ...
    May 27, 2021 2 min read