Search Results for

    Show / Hide Table of Contents

    Class ListView

    Defines a wrapper for the core UWP ListView control.

    Inheritance
    System.Object
    ElementWrapper<WindowsElement>
    WindowsElementWrapper
    ListView
    Implements
    IElementWrapper<WindowsElement>
    Inherited Members
    WindowsElementWrapper.Driver
    WindowsElementWrapper.VerifyDriverElementShown(By, Nullable<TimeSpan>)
    WindowsElementWrapper.VerifyDriverElementsShown(By, Nullable<TimeSpan>)
    ElementWrapper<WindowsElement>.Element
    ElementWrapper<WindowsElement>.ElementDriver
    ElementWrapper<WindowsElement>.IsVisible
    ElementWrapper<WindowsElement>.IsEnabled
    ElementWrapper<WindowsElement>.Click()
    ElementWrapper<WindowsElement>.GetAttribute(String)
    ElementWrapper<WindowsElement>.FindElement(By)
    ElementWrapper<WindowsElement>.VerifyElementNotShown(By)
    ElementWrapper<WindowsElement>.VerifyElementShown(By)
    ElementWrapper<WindowsElement>.VerifyElementShown(By, Nullable<TimeSpan>)
    ElementWrapper<WindowsElement>.VerifyElementsShown(By)
    ElementWrapper<WindowsElement>.VerifyElementsShown(By, Nullable<TimeSpan>)
    Namespace: Legerity.Windows.Elements.Core
    Assembly: Legerity.Windows.dll
    Syntax
    public class ListView : WindowsElementWrapper, IElementWrapper<WindowsElement>

    Constructors

    | Improve this Doc View Source

    ListView(WindowsElement)

    Initializes a new instance of the ListView class.

    Declaration
    public ListView(WindowsElement element)
    Parameters
    Type Name Description
    WindowsElement element

    The reference.

    Properties

    | Improve this Doc View Source

    Items

    Gets the collection of items associated with the list view.

    Declaration
    public virtual ReadOnlyCollection<AppiumWebElement> Items { get; }
    Property Value
    Type Description
    ReadOnlyCollection<AppiumWebElement>
    | Improve this Doc View Source

    SelectedItem

    Gets the element associated with the currently selected item.

    Declaration
    public virtual AppiumWebElement SelectedItem { get; }
    Property Value
    Type Description
    AppiumWebElement

    Methods

    | Improve this Doc View Source

    ClickItem(String)

    Clicks on an item in the list view with the specified item name.

    Declaration
    public virtual void ClickItem(string name)
    Parameters
    Type Name Description
    System.String name

    The name of the item to click.

    Exceptions
    Type Condition
    ElementsNotShownException

    Thrown when no elements are shown for the expected locator.

    | Improve this Doc View Source

    ClickItemByPartialName(String)

    Clicks on an item in the list view with the specified partial item name.

    Declaration
    public virtual void ClickItemByPartialName(string partialName)
    Parameters
    Type Name Description
    System.String partialName

    The partial name match for the item to click.

    Exceptions
    Type Condition
    ElementsNotShownException

    Thrown when no elements are shown for the expected locator.

    Operators

    | Improve this Doc View Source

    Implicit(AppiumWebElement to ListView)

    Allows conversion of a to the ListView without direct casting.

    Declaration
    public static implicit operator ListView(AppiumWebElement element)
    Parameters
    Type Name Description
    AppiumWebElement element

    The .

    Returns
    Type Description
    ListView

    The ListView.

    | Improve this Doc View Source

    Implicit(RemoteWebElement to ListView)

    Allows conversion of a to the ListView without direct casting.

    Declaration
    public static implicit operator ListView(RemoteWebElement element)
    Parameters
    Type Name Description
    RemoteWebElement element

    The .

    Returns
    Type Description
    ListView

    The ListView.

    | Improve this Doc View Source

    Implicit(WindowsElement to ListView)

    Allows conversion of a to the ListView without direct casting.

    Declaration
    public static implicit operator ListView(WindowsElement element)
    Parameters
    Type Name Description
    WindowsElement element

    The .

    Returns
    Type Description
    ListView

    The ListView.

    Implements

    IElementWrapper<TElement>

    Extension Methods

    WindowsElementWrapperExtensions.TryWaitUntil<TElementWrapper, TResult>(TElementWrapper, Func<TElementWrapper, TResult>, Nullable<TimeSpan>, Int32, Action<Exception>)
    WindowsElementWrapperExtensions.WaitUntil<TElementWrapper, TResult>(TElementWrapper, Func<TElementWrapper, TResult>, Nullable<TimeSpan>, Int32)
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright (c) MADE Apps