Android Wireless test-uiautomator uiscrollable API Introduction II

Source: Internet
Author: User

Quick Slide

First, rapid sliding related concepts

1. Step Length: The time to slide from one point to another

2, Sweep frequency: For example, the list, how many times to slide to the bottom, the number of sliding is the number of sweeps

Second, the relevant API

return value Api Describe
Boolean Flingbackward () Quickly slide backwards with step 5
Boolean Filingforward () Slide forward fast with step 5
Boolean flingtobeginning (int maxswipes) Custom sweep count quickly slide to start with step 5
Boolean Flingtoend (int maxswipes) Custom scans quickly swipe to the end with step 5

Iii. Examples of API applications

 PackageCom.testuiselector;ImportCom.android.uiautomator.core.UiDevice;ImportCom.android.uiautomator.core.UiObject;Importcom.android.uiautomator.core.UiObjectNotFoundException;Importcom.android.uiautomator.core.UiScrollable;ImportCom.android.uiautomator.core.UiSelector;Importcom.android.uiautomator.testrunner.UiAutomatorTestCase; Public classDemoextendsUiautomatortestcase {/**     * @paramargs*/     Public Static voidMain (string[] args) {String jarname, TestClass, testname, Androidid; Jarname= "Demo2"; TestClass= "Com.testuiselector.Demo"; TestName= "Testfling"; Androidid= "1"; NewUiautomatorhelper (Jarname, TestClass, testname, Androidid); }         Public voidTestfling ()throwsuiobjectnotfoundexception{uidevice.getinstance (). Presshome (); Sleep (2000); Uiselector L=NewUiselector (). Text ("People"); UiObject P=NewUiObject (L);        P.click (); Sleep (2000); uiscrollable Scroll=NewUiscrollable (NewUiselector (). ClassName ("Android.widget.ListView"));        Scroll.flingforward (); Sleep (3000);        Scroll.flingbackward (); Sleep (3000); Scroll.flingtoend (5); Sleep (3000); Scroll.flingtobeginning (5); }}
Demo.java

Android Wireless test-uiautomator uiscrollable API Introduction two

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.