cypress-cucumber-steps
    Preparing search index...

    Function When_I_find_inputs_by_placeholder_text

    • When I find inputs by placeholder text:

      When I find inputs by placeholder text {string}
      

      A placeholder is not a good substitute for a label so you should generally use "When I find input by label text" instead.

      Parameters

      • placeholderText: string

      Returns void

      When I find inputs by placeholder text "Text"
      

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

      When I find inputs by placeholder text "Password"
      And I get 1st element
      And I type "password"

      Inspired by Testing Library's ByPlaceholderText.