cypress-cucumber-steps
    Preparing search index...

    Function Then_I_see_location

    • Then I see location:

      Then I see location
      | hash | {string} |
      | host | {string} |
      | hostname | {string} |
      | href | {string} |
      | origin | {string} |
      | pathname | {string} |
      | port | {string} |
      | protocol | {string} |
      | search | {string} |

      Parameters

      • location: DataTable

      Returns void

      Make assertions about every location property:

      Then I see location
      | hash | #hash |
      | host | localhost:8081 |
      | hostname | localhost |
      | href | http://localhost:8081/commands/querying?key=value#hash |
      | origin | http://localhost:8081 |
      | pathname | /commands/querying |
      | port | 8081 |
      | protocol | http: |
      | search | ?key=value |

      Check location for query params and pathname:

      Then I see location
      | search | ?key=value |
      | pathname | /commands/querying |