Interface IRepeatComponent
- Namespace
- GroupeIsa.Neos.EndToEndTests.UI.Components
- Assembly
- GroupeIsa.Neos.EndToEndTests.UI.dll
Provides the functionalities of a repeat component for automation.
[AbstractionComponent("repeat")]
public interface IRepeatComponent : IAutomationComponent
- Inherited Members
Properties
IterationCount
Gets the number of displayed nodes.
int IterationCount { get; }
Property Value
Methods
GetIterationContent(int)
Gets the rendered direct child components for the specified iteration index.
IEnumerable<IAutomationComponent> GetIterationContent(int index)
Parameters
indexintThe iteration index (starts at 1).
Returns
- IEnumerable<IAutomationComponent>
The rendered components.
GetIterationContents()
Gets the rendered direct child components.
IEnumerable<IAutomationComponent> GetIterationContents()
Returns
- IEnumerable<IAutomationComponent>
The rendered components.