How does epoll work internally?

How does Calabash work internally?

Miguel Paraz at Quora Visit the source

Was this solution helpful to you?

Other answers

http://anadea.info/blog/introduction-to-calabash Internally, calabash uses an instrumentation backend that runs on the phone. This backend is an Android app https://github.com/calabash/calabash-android/tree/master/ruby-gem/test-server/instrumentation-backend/src around http://code.google.com/p/robotium/, which is a test automation library for Android. A lot of the UI functionality of Robotium can be found https://github.com/jayway/robotium/tree/master/robotium-solo/src/main/java/com/jayway/android/robotium/solo, and, by browsing the code, you can have an idea of how some UI events are generated. Here is, for example, how https://github.com/jayway/robotium/blob/master/robotium-solo/src/main/java/com/jayway/android/robotium/solo/Swiper.java#L21: it is just a good use of http://developer.android.com/reference/android/view/MotionEvent.html, judiciously placed to simulate a swipe.

Owen Keat

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.