ExtensionsGetAllRowValuesForColumn Method |
To get text for all rows for specified column number
Namespace: SeleniumUtilitiesAssembly: SeleniumUtilities (in SeleniumUtilities.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static List<string> GetAllRowValuesForColumn(
this IList<IWebElement> elementList,
int columnIndex
)
<ExtensionAttribute>
Public Shared Function GetAllRowValuesForColumn (
elementList As IList(Of IWebElement),
columnIndex As Integer
) As List(Of String)
public:
[ExtensionAttribute]
static List<String^>^ GetAllRowValuesForColumn(
IList<IWebElement^>^ elementList,
int columnIndex
)
[<ExtensionAttribute>]
static member GetAllRowValuesForColumn :
elementList : IList<IWebElement> *
columnIndex : int -> List<string>
Parameters
- elementList
- Type: System.Collections.GenericIListIWebElement
[Missing <param name="elementList"/> documentation for "M:SeleniumUtilities.Extensions.GetAllRowValuesForColumn(System.Collections.Generic.IList{OpenQA.Selenium.IWebElement},System.Int32)"]
- columnIndex
- Type: SystemInt32
[Missing <param name="columnIndex"/> documentation for "M:SeleniumUtilities.Extensions.GetAllRowValuesForColumn(System.Collections.Generic.IList{OpenQA.Selenium.IWebElement},System.Int32)"]
Return Value
Type:
ListString[Missing <returns> documentation for "M:SeleniumUtilities.Extensions.GetAllRowValuesForColumn(System.Collections.Generic.IList{OpenQA.Selenium.IWebElement},System.Int32)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IListIWebElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also