UI Automation in WPF TreeGrid (SfTreeGrid)

27 Feb 20254 minutes to read

Requirements and configuration

To test SfTreeGrid control with CUITs, build the extension project and place it in the mentioned location. You can get the extension project from the following location.

SfTreeGrid

https://github.com/SyncfusionExamples/coded-ui-extension-project-for-wpf-treegrid
  1. Open the extension project and build it.
  2. Get the following tabulated assembly from the bin folder.

SfGrid.WPF

Syncfusion.VisualStudio.TestTools.UITest.SfGridExtension.dll

The SfGridExtension assembly must be placed into the following directory based on your Visual Studio version.
For Visual Studio 2015:
C:\Program Files (x86)\Common Files\Microsoft Shared\VSTT\14.0\UITestExtensionPackages

For Visual Studio 2017:
C:\Program Files (x86)\Common Files\Microsoft Shared\VSTT\15.0\UITestExtensionPackages

NOTE

Syncfusion.VisualStudio.TestTools.UITest.SfGridExtension.dll needs to be installed in GAC location. Please refer to the MSDN link for GAC installation.

Steps to work with Coded UI

This section explains how to create a CodedUITest project and test the tree grid application.

  1. Create a new WPF application or open an existing WPF application with tree grid and enable the Coded UI test in tree grid. To enable CUITs, set AutomationPeerHelper.EnableCodedUI to true and access the AutomationPeerHelper class from Syncfusion.UI.Xaml.Grid namespace as demonstrated in the following code sample.

    using Syncfusion.UI.Xaml.Grid;
       
    public MainWindow()
    {
    	 InitializeComponent();
    	 AutomationPeerHelper.EnableCodedUI = true;
    }
  2. Build the application and launch the .exe file from the bin folder.
  3. Create a Coded UI test project as shown in the following screenshot.

    Coded UI Test Project

    Add New Project

  4. After created a new Coded UI project, a CUIT file is added automatically, and the Generate Code dialog box appears. In this, choose Record actions, edit UI map, or add assertions.

    Generate Code dialog box

    Generate Code for Coded UI Test

  5. Now, minimize the Coded UI project Visual Studio, and CodedUITestBuilder appears in the bottom-right corner of your window. You can record the actions by clicking the Start Recording in CodedUITestBuilder.

    CodedUITestBuilder

    CodedUITestBuilder

  6. Open the CodedUITestBuilder from the existing Coded UI project by right-clicking the CodedUITestMethod in the CUIT file and clicking the Generate Code for Coded UI test as shown in the following screenshot. You can see the same CodedUITestBuilder in the bottom-right corner of the window.

    CodedUITestBuilder with Coded UI project by right clicking

    CodedUITestMethod

  7. Now, drag the Crosshairs to the UI elements of your WPF SfTreeGrid application, and it shows the available properties of the inner UI elements in SfTreeGrid.
  8. Record the actions made on UI elements by clicking the Record button on the CodedUITest builder. For example you can record the action of changing the cell value in SfTreeGrid. Click the Pause button to finish the record.

    Record button on the CodedUITest builder

    CodedUITest

  9. After the record has been completed, click the GenerateCode icon in CodedUITestBuilder for generate a test method, and then close the CodedUITestBuilder. You can see the generated code for cell value changed action as follows.

    public void RecordedMethod1()
    {
         public void RecordedMethod2()
       {
        #region Variable Declarations
        WpfText uIHardingText = this.UIWpfWindow.UITreeGridRowControlCustom.UITreeGridCellCustom.UIHardingText;
        WpfEdit uIItemEdit = this.UIWpfWindow.UITreeGridRowControlCustom.UITreeGridCellCustom.UIItemEdit;
        WpfText uIJeffersonText = this.UIWpfWindow.UITreeGridRowControlCustom1.UITreeGridCellCustom.UIJeffersonText;
       #endregion
        // Double-Click 'Harding' label
        Mouse.DoubleClick(uIHardingText, new Point(75, 5));
        // Type 'sync' in text box
        uIItemEdit.Text = this.RecordedMethod2Params.UIItemEditText;
        // Click 'Jefferson' label
        Mouse.Click(uIJeffersonText, new Point(140, 6));
    }
    }
  10. Create an assertion to check the modified cell value. Drag the crosshair to the modified cell, and the Assertion window appears. The properties for control (Cell) is now listed in the Assertion dialog box. You can add assertion by clicking the Generate Code button in CodedUITestBuilder.

    modified cell value

    Assertion window

  11. After all the tests and assertion have been created, right-click the Test method, and click Run Tests to run the test as follows.

    Test method and click Run Tests

    Run Test

Properties

UI Elements

Properties

TreeGrid RowCount ColumnCount SelectionMode SelectionUnit SelectionIndex SelectedItemCount
TreeGridCell CellValue FormattedValue RowIndex ColumnIndex ColumnName
TreeGridHeaderCell MappingName SortDirection SortNumberVisibility
TreeGridRowHeaderCell RowErrorMessage RowIndex State
TreeGridStackedHeaderCell Default Properties  
TreeGridExpanderCell Default properties

Automation peer class name

Control name in code generation

Property provider class name

SfTreeGridAutomationPeer WpfSfTreeGrid SfTreeGridPropertyProvider
TreeGridCellAutomationPeer WpfSfTreeGridCell SfTreeGridCellPropertyProvider
TreeGridHeaderCellAutomationPeer WpfSfTreeGridHeaderCell SfTreeGridHeaderCellPropertyProvider
TreeGridRowHeaderCellAutomationPeer WpfSfTreeGridRowHeaderCell SfTreeGridRowHeaderCellPropertyProvider
TreeGridStackedHeaderCellAutomationPeer WpfSfTreeGridStackedHeaderCell SfTreeGridStackedHeaderCellPropertyProvider
TreeGridExpanderCellAutomationPeer WpfTreeGridExpanderCell SfTreeGridExpanderCellPropertyProvider

NOTE

You can refer to our WPF TreeGrid feature tour page for its groundbreaking feature representations. You can also explore our WPF TreeGrid example to know how to render and configure the treegrid.