How to use GridRow method of FlaUI.Core.AutomationElements.GridHeader class

Best FlaUI code snippet using FlaUI.Core.AutomationElements.GridHeader.GridRow

Grid.cs

Source:Grid.cs Github

copy

Full Screen

...51 /// <summary>52 /// Returns the rows which are currently visible to UIA. Might not be the full list (eg. in virtualized lists)!53 /// Use <see cref="GetRowByIndex" /> to make sure to get the correct row.54 /// </summary>55 public virtual GridRow[] Rows56 {57 get58 {59 var rows = FindAllChildren(cf => cf.ByControlType(ControlType.DataItem).Or(cf.ByControlType(ControlType.ListItem)));60 return rows.Select(x => x.AsGridRow()).ToArray();61 }62 }63 /// <summary>64 /// Gets all selected items.65 /// </summary>66 public GridRow[] SelectedItems => SelectionPattern.Selection.Value.Select(x => new GridRow(x.FrameworkAutomationElement)).ToArray();67 /// <summary>68 /// Gets the first selected item or null otherwise.69 /// </summary>70 public GridRow SelectedItem => SelectedItems?.FirstOrDefault();71 /// <summary>72 /// Select a row by index.73 /// </summary>74 public GridRow Select(int rowIndex)75 {76 var gridRow = GetRowByIndex(rowIndex);77 gridRow.Select();78 return gridRow;79 }80 /// <summary>81 /// Select the first row by text in the given column.82 /// </summary>83 public GridRow Select(int columnIndex, string textToFind)84 {85 var gridRow = GetRowByValue(columnIndex, textToFind);86 gridRow.Select();87 return gridRow;88 }89 /// <summary>90 /// Add a row to the selection by index.91 /// </summary>92 public GridRow AddToSelection(int rowIndex)93 {94 var gridRow = GetRowByIndex(rowIndex);95 gridRow.AddToSelection();96 return gridRow;97 }98 /// <summary>99 /// Add a row to the selection by text in the given column.100 /// </summary>101 public GridRow AddToSelection(int columnIndex, string textToFind)102 {103 var gridRow = GetRowByValue(columnIndex, textToFind);104 gridRow.AddToSelection();105 return gridRow;106 }107 /// <summary>108 /// Remove a row from the selection by index.109 /// </summary>110 public GridRow RemoveFromSelection(int rowIndex)111 {112 var gridRow = GetRowByIndex(rowIndex);113 gridRow.RemoveFromSelection();114 return gridRow;115 }116 /// <summary>117 /// Remove a row from the selection by text in the given column.118 /// </summary>119 public GridRow RemoveFromSelection(int columnIndex, string textToFind)120 {121 var gridRow = GetRowByValue(columnIndex, textToFind);122 gridRow.RemoveFromSelection();123 return gridRow;124 }125 /// <summary>126 /// Get a row by index.127 /// </summary>128 public GridRow GetRowByIndex(int rowIndex)129 {130 PreCheckRow(rowIndex);131 var gridCell = GridPattern.GetItem(rowIndex, 0).AsGridCell();132 return gridCell.ContainingRow;133 }134 /// <summary>135 /// Get a row by text in the given column.136 /// </summary>137 public GridRow GetRowByValue(int columnIndex, string value)138 {139 return GetRowsByValue(columnIndex, value, 1).FirstOrDefault();140 }141 /// <summary>142 /// Get all rows where the value of the given column matches the given value.143 /// </summary>144 /// <param name="columnIndex">The column index to check.</param>145 /// <param name="value">The value to check.</param>146 /// <param name="maxItems">Maximum numbers of items to return, 0 for all.</param>147 /// <returns>List of found rows.</returns>148 public GridRow[] GetRowsByValue(int columnIndex, string value, int maxItems = 0)149 {150 PreCheckColumn(columnIndex);151 var gridPattern = GridPattern;152 var returnList = new List<GridRow>();153 for (var rowIndex = 0; rowIndex < RowCount; rowIndex++)154 {155 var currentCell = gridPattern.GetItem(rowIndex, columnIndex).AsGridCell();156 if (currentCell.Value == value)157 {158 returnList.Add(currentCell.ContainingRow);159 if (maxItems > 0 && returnList.Count >= maxItems)160 {161 break;162 }163 }164 }165 return returnList.ToArray();166 }167 private void PreCheckRow(int rowIndex)168 {169 if (RowCount <= rowIndex)170 {171 throw new Exception($"Grid contains only {RowCount} row(s) but index {rowIndex} was requested");172 }173 }174 private void PreCheckColumn(int columnIndex)175 {176 if (ColumnCount <= columnIndex)177 {178 throw new Exception($"Grid contains only {ColumnCount} columns(s) but index {columnIndex} was requested");179 }180 }181 }182 /// <summary>183 /// Header element for grids and tables.184 /// </summary>185 public class GridHeader : AutomationElement186 {187 public GridHeader(FrameworkAutomationElementBase frameworkAutomationElement) : base(frameworkAutomationElement)188 {189 }190 public GridHeaderItem[] Columns191 {192 get193 {194 var headerItems = FindAllChildren(cf => cf.ByControlType(ControlType.HeaderItem));195 return headerItems.Select(x => x.AsGridHeaderItem()).ToArray();196 }197 }198 }199 /// <summary>200 /// Header item for grids and tables.201 /// </summary>202 public class GridHeaderItem : AutomationElement203 {204 public GridHeaderItem(FrameworkAutomationElementBase frameworkAutomationElement) : base(frameworkAutomationElement)205 {206 }207 public string Text => Properties.Name.Value;208 }209 /// <summary>210 /// Row element for grids and tables.211 /// </summary>212 public class GridRow : SelectionItemAutomationElement213 {214 public GridRow(FrameworkAutomationElementBase frameworkAutomationElement) : base(frameworkAutomationElement)215 {216 }217 protected IScrollItemPattern ScrollItemPattern => Patterns.ScrollItem.Pattern;218 public GridCell[] Cells219 {220 get221 {222 var cells = FindAllChildren(cf => cf.ByControlType(ControlType.HeaderItem).Not());223 return cells.Select(x => x.AsGridCell()).ToArray();224 }225 }226 public GridHeaderItem Header227 {228 get229 {230 var headerItem = FindFirstChild(ConditionFactory.ByControlType(ControlType.HeaderItem));231 return headerItem?.AsGridHeaderItem();232 }233 }234 /// <summary>235 /// Find a cell by a given text.236 /// </summary>237 public GridCell FindCellByText(string textToFind)238 {239 return Cells.FirstOrDefault(cell => cell.Value.Equals(textToFind));240 }241 public GridRow ScrollIntoView()242 {243 ScrollItemPattern?.ScrollIntoView();244 return this;245 }246 }247 /// <summary>248 /// Cell element for grids and tables.249 /// </summary>250 public class GridCell : AutomationElement251 {252 public GridCell(FrameworkAutomationElementBase frameworkAutomationElement) : base(frameworkAutomationElement)253 {254 }255 protected IGridItemPattern GridItemPattern => Patterns.GridItem.Pattern;256 protected ITableItemPattern TableItemPattern => Patterns.TableItem.Pattern;257 public Grid ContainingGrid => GridItemPattern.ContainingGrid.Value.AsGrid();258 public GridRow ContainingRow259 {260 get261 {262 // Get the parent of the cell (which should be the row)263 var rowElement = Automation.TreeWalkerFactory.GetControlViewWalker().GetParent(this);264 return rowElement?.AsGridRow();265 }266 }267 public string Value => Properties.Name.Value;268 }269}...

Full Screen

Full Screen

AutomationElementExtensions.cs

Source:AutomationElementExtensions.cs Github

copy

Full Screen

...17 public Grid AsGrid() { return element.AsGrid(); }18 public GridCell AsGridCell() { return element.AsGridCell(); }19 public GridHeader AsGridHeader() { return element.AsGridHeader(); }20 public GridHeaderItem AsGridHeaderItem() { return element.AsGridHeaderItem(); }21 public GridRow AsGridRow() { return element.AsGridRow(); }22 public HorizontalScrollBar AsHorizontalScrollBar() { return element.AsHorizontalScrollBar(); }23 public Label AsLabel() { return element.AsLabel(); }24 public ListBox AsListBox() { return element.AsListBox(); }25 public ListBoxItem AsListBoxItem() { return element.AsListBoxItem(); }26 public Menu AsMenu() { return element.AsMenu(); }27 public MenuItem AsMenuItem() { return element.AsMenuItem(); }28 public ProgressBar AsProgressBar() { return element.AsProgressBar(); }29 public RadioButton AsRadioButton() { return element.AsRadioButton(); }30 public Slider AsSlider() { return element.AsSlider(); }31 public Tab AsTab() { return element.AsTab(); }32 public TabItem AsTabItem() { return element.AsTabItem(); }33 public TextBox AsTextBox() { return element.AsTextBox(); }34 public Thumb AsThumb() { return element.AsThumb(); }35 public TitleBar AsTitleBar() { return element.AsTitleBar(); }...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run FlaUI automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful