Swipe and Drag – Calabash iOS and Android

Hi guys !!
I am writing examples of swipe and drag on mobile devices with calabash today. Some methods that you can use to test, these drags have the same action as the swipe. (If for some reason the swipe don’t work)
ANDROID:
  def swipe_page_to_left
    performAction('swipe', 'left')
  end

  def swipe_page_to_right
    performAction('swipe', 'right')
  end

  def scroll_to_right
    performAction('drag', 90, 0, 50, 50, 50)
  end

  def scroll_to_left
    performAction('drag', 0, 90, 50, 50, 50)
  end

def scroll_to_up
   performAction('drag', 88, 80, 90, 90, 5)
 end

 def scroll_to_down
    performAction('drag', 70, 10, 80, 0, 3)
 end

IOS
Change to down, left or right:

 swipe(:up)

If you have some question or suggest just write below !
Thank you 🙂

9 thoughts on “Swipe and Drag – Calabash iOS and Android

    1. Hi Aman,

      I used to use drag. But you need to know the position on the screen to use the same x and y.
      Example:
      performAction(‘drag’, 90, 0, 50, 50, 50)
      or
      performAction(‘swipe’, ‘left’)

      For IOS you can use:
      scroll(“element_query“, :right)
      or
      swipe :left, {:’swipe-delta’ => {:horizontal => {:dx => 375, :dy => 0}}}

      and change the x, y and the direction that you want swipe.

      Let me know if it worked.

  1. Scrolling down with drag isn’t working for me. I need to pull down the application screen by more than half length of the device.

      1. Already found the way. I leave an example:

        swipe(:left,:query => “SPWebView”,:force => :strong)

        Thanks for your tips!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.