cypress-cucumber-steps
    Preparing search index...

    Function When_I_click_x_y_coordinates

    • When I click x-y coordinates:

      When I click {int}px and {int}px
      

      Clicks on the x-y coordinates of the element found in the previous step.

      Parameters

      • x: number
      • y: number
      • Optionaloptions: DataTable

      Returns void

      When I click 80px and 75px
      

      With options:

      When I click 80px and 75px
      | altKey | false |
      | animationDistanceThreshold | 5 |
      | ctrlKey | false |
      | log | true |
      | force | false |
      | metaKey | false |
      | multiple | false |
      | scrollBehavior | top |
      | shiftKey | false |
      | timeout | 4000 |
      | waitForAnimations | true |

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

      When I find element by text "Text"
      And I click 80px and 75px