Click here to Skip to main content
15,885,309 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
Hi,
I'm writing a UI automation software. I need to select a row in the datagrid and then click on the run button. I tried most of the example codes in the internet and they didn't work for me. For example for selecting a gridview row:

When I write the following code:
C#
AutomationElement dataGrid = this.mainWindow.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.AutomationIdProperty, "2885"));

if (dataGrid != null) {

GridPattern pattern = GetGridPattern(dataGrid);
AutomationElement tempElement = pattern.GetItem(1, 1);
tempElement.SetFocus();
}



I receive the error: "Target element cannot receive focus." which is related to the last line.

I also tried the code:
C#
AutomationElement mainGrid = // find the grid in the window var columnCount = (int)mainGrid.GetCurrentPropertyValue(GridPattern.ColumnCountProperty);

var mainGridPattern = (GridPattern)mainGrid.GetCurrentPattern(GridPattern.Pattern);

var rowToSelect = 2;

// select just the first cell var item = mainGridPattern.GetItem(rowToSelect, 0);

var itemPattern = (SelectionItemPattern)item.GetCurrentPattern(SelectionItemPattern.Pattern);

itemPattern.Select();


but I and I received the error :"Unsupported Pattern".

I should mention that I'm using UI Spy for retrieving the elements properties.

Could you explain me what's wrong and how should I select a row?
Posted

1 solution

Been a while, but check this out

Quote:
GridPattern does not support active manipulation of a grid; the TransformPattern control pattern is required for this functionality.


http://msdn.microsoft.com/en-us/library/system.windows.automation.gridpattern.aspx[^]
 
Share this answer
 
Comments
kasra515 11-Jul-13 10:20am    
Thank you for your answer. The Transform control "Represents a control that can be moved, resized, or rotated within a two-dimensional space.", so it's not what I'm looking for. Can anyone help me to get it work?

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900