cypress-cucumber-steps
    Preparing search index...

    Function When_I_find_elements_by_title

    • When I find elements by title:

      When I find elements by title {string}
      

      Finds elements with a matching title attribute. This will also find title elements within SVGs.

      Parameters

      • title: string
      • Optionaloptions: DataTable

      Returns void

      When I find elements by title "Title"
      

      With options:

      When I find elements by title "Title"
      | log | true |
      | timeout | 4000 |
      | withinSubject | null |
      | includeShadowDom | false |
      | pseudoSelector | visible |

      This precedes steps like "When I click". For example:

      When I find elements by title "Close"
      And I get 1st element
      And I click

      Inspired by Testing Library's ByTitle.