Sha256: 550aaba4e91c181940124ae58b05d48201803092bce439e8ea197e8b93ed6ee9
Contents?: true
Size: 1006 Bytes
Versions: 20
Compression:
Stored size: 1006 Bytes
Contents
package sh.calaba.instrumentationbackend.actions.scrolling; import sh.calaba.instrumentationbackend.InstrumentationBackend; import sh.calaba.instrumentationbackend.Result; import sh.calaba.instrumentationbackend.actions.Action; import sh.calaba.instrumentationbackend.actions.Actions; import android.test.TouchUtils; public class ScrollDown implements Action { @Override public Result execute(String... args) { TouchUtils.dragQuarterScreenUp(Actions.parentTestCase, InstrumentationBackend.solo.getCurrentActivity()); TouchUtils.dragQuarterScreenUp(Actions.parentTestCase, InstrumentationBackend.solo.getCurrentActivity()); TouchUtils.dragQuarterScreenUp(Actions.parentTestCase, InstrumentationBackend.solo.getCurrentActivity()); TouchUtils.dragQuarterScreenUp(Actions.parentTestCase, InstrumentationBackend.solo.getCurrentActivity()); return Result.successResult(); } @Override public String key() { return "scroll_down"; } }
Version data entries
20 entries across 20 versions & 1 rubygems