cypress-cucumber-steps
    Preparing search index...

    Function When_I_type

    • When I type:

      When I type {string}
      

      Parameters

      • text: string
      • Optionaloptions: DataTable

      Returns void

      When I type "Hello, world!"
      

      With options:

      When I type "Hello, world!"
      | animationDistanceThreshold | 5 |
      | delay | 10 |
      | force | false |
      | log | true |
      | parseSpecialCharSequences | true |
      | release | true |
      | scrollBehavior | top |
      | timeout | 4000 |
      | waitForAnimations | true |

      A preceding step like "When I find element by label text" is required. For example:

      When I find element by label text "Email"
      And I type "[email protected]"

      Text may include special character sequences. For example:

      # types the Enter key
      When I type "{enter}"