cypress-cucumber-steps
    Preparing search index...

    Function When_I_find_images_by_alt_text

    • When I find images by alt text:

      When I find images by alt text {string}
      

      Finds all <img> that match the alt text.

      Parameters

      • altText: string

      Returns void

      When I find images by alt text "Text"
      

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

      When I find images by alt text "Text"
      And I get 1st element
      And I click

      Inspired by Testing Library's ByAltText.