@nospamproxy/core
    Preparing search index...
    • Test helper for selecting a radio button in a list filter.

      Parameters

      • content: Element

        The content element of a <list-filter>'s generic dropdown.

      • displayText: string

        The exact text of the item to select.

      Returns Promise<void>

      const filter = el.querySelector('list-filter');
      const content = getGenericDropdownContent(filter);
      await selectListFilterItem(content, 'Example');

      Use ListFilterHelper instead.