Automated UI Testing with Visual Studio 2012: Listing 1.

A sample UIItemWindow class.

[GeneratedCode("Coded UITest Builder", "11.0.50727.1")]
  public class UIItemWindow1 : WinWindow
  {
        
    public UIItemWindow1(UITestControl searchLimitContainer) : 
      base(searchLimitContainer)
    {
      #region Search Criteria
      this.SearchProperties[WinWindow.PropertyNames.ControlId] = "84";
      this.WindowTitles.Add("Calculator");
      #endregion
    }
        
    #region Properties
    public WinButton UIDecimalseparatorButton
    {
      get
      {
        if ((this.mUIDecimalseparatorButton == null))
        {
          this.mUIDecimalseparatorButton = new WinButton(this);
          #region Search Criteria
          this.mUIDecimalseparatorButton.SearchProperties[
            WinButton.PropertyNames.Name] = "Decimal separator";
          this.mUIDecimalseparatorButton.WindowTitles.Add("Calculator");
          #endregion
        }
        return this.mUIDecimalseparatorButton;
      }
    }
    #endregion
        
    #region Fields
    private WinButton mUIDecimalseparatorButton;
    #endregion
  }

About the Author

Mark Michaelis (http://IntelliTect.com/Mark) is the founder of IntelliTect and serves as the Chief Technical Architect and Trainer. Since 1996, he has been a Microsoft MVP for C#, Visual Studio Team System, and the Windows SDK and in 2007 he was recognized as a Microsoft Regional Director. He also serves on several Microsoft software design review teams, including C#, the Connected Systems Division, and VSTS. Mark speaks at developer conferences and has written numerous articles and books - Essential C# 5.0 is his most recent. Mark holds a Bachelor of Arts in Philosophy from the University of Illinois and a Masters in Computer Science from the Illinois Institute of Technology. When not bonding with his computer, Mark is busy with his family or training for another triathlon (having completed the Ironman in 2008). Mark lives in Spokane, Washington, with his wife Elisabeth and three children, Benjamin, Hanna and Abigail.

comments powered by Disqus

Featured

  • Compare New GitHub Copilot Free Plan for Visual Studio/VS Code to Paid Plans

    The free plan restricts the number of completions, chat requests and access to AI models, being suitable for occasional users and small projects.

  • Diving Deep into .NET MAUI

    Ever since someone figured out that fiddling bits results in source code, developers have sought one codebase for all types of apps on all platforms, with Microsoft's latest attempt to further that effort being .NET MAUI.

  • Copilot AI Boosts Abound in New VS Code v1.96

    Microsoft improved on its new "Copilot Edit" functionality in the latest release of Visual Studio Code, v1.96, its open-source based code editor that has become the most popular in the world according to many surveys.

  • AdaBoost Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the AdaBoost.R2 algorithm for regression problems (where the goal is to predict a single numeric value). The implementation follows the original source research paper closely, so you can use it as a guide for customization for specific scenarios.

  • Versioning and Documenting ASP.NET Core Services

    Building an API with ASP.NET Core is only half the job. If your API is going to live more than one release cycle, you're going to need to version it. If you have other people building clients for it, you're going to need to document it.

Subscribe on YouTube