Click here to Skip to main content
15,885,899 members
Articles / DevOps / Testing

Automation Enabler PlugIn - Exposes Inaccessible Elements to UI Automation Framework

Rate me:
Please Sign up or sign in to vote.
4.68/5 (7 votes)
20 Jun 2011CPOL7 min read 36.5K   921   24  
A reusable plug-in framework which exposes inaccessible elements to UI Automation framework. A must for .NET 2.0 WinForm container controls
using System;
using System.Collections.Generic;
using System.Text;

namespace TreeControl
{
    public enum HitArea
    {
        None,
        ExpandIcon,
        AutoIcon,
        Label
    }

    public enum MeasurementType
    {
        MeasurementGroup,
        ChildMeasurement
    }

    public enum Behavior
    {
        Normal,
        Auto,
        Series,
        AutoSeries
    }

    public enum State
    {
        Unchecked,
        Active,
        Checked,
        Failed
    }

    public enum InteractionState
    {
        Enabled,
        Disabled
    }

    public enum StepState
    {
        NonActive,
        Active,
        Completed,
        Failed,
        Enabled,
        Disabled,
        Expanded,
        Collapsed
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Philips
India India
Have been working with computers since the early 00's. Since then I've been building, fixing, configuring, installing, coding and designing with them. At present I mainly code windows applications in C#, WCF, WPF and SQL. I'm very interested in Design Patterns and try and use these generic principles in all new projects to create truly n-tier architectures. Also I like to code for making the User Interface very attractive...

Comments and Discussions