cypress-cucumber-steps
    Preparing search index...

    Function When_I_find_input_by_label_text

    • When I find input by label text:

      When I find input by label text {string}
      

      Finds the first input element that matches the label text.

      Parameters

      • text: string
      • Optionaloptions: DataTable

      Returns void

      When I find input by label text "Email"
      

      With options:

      When I find input by label text "Email"
      | log | true |
      | timeout | 4000 |
      | withinSubject | null |
      | includeShadowDom | false |
      | pseudoSelector | visible |

      This precedes steps like "Then I see value". For example:

      When I find input by label text "Email"
      Then I see value "[email protected]"

      Inspired by Testing Library's ByLabelText.