您好,登录后才能下订单哦!
密码登录
            
            
            
            
        登录注册
            
            
            
        点击 登录注册 即表示同意《亿速云用户服务条款》
        所谓Launcher,指的是安卓的桌面管理程序,所有的应用图标都放在launcher上面。其实这是一个很简单的例子,只是为了验证几点想法而已。
做这个试验的目的有二
package majcit.com.AppiumDemo;  import io.appium.java_client.android.AndroidDriver;  import java.net.URL; import org.junit.Test; import org.junit.After; import org.junit.Before; import org.openqa.selenium.Dimension; import org.openqa.selenium.NoSuchElementException; import org.openqa.selenium.Point; import org.openqa.selenium.WebElement; import org.openqa.selenium.remote.DesiredCapabilities;  import static org.hamcrest.Matchers.*; import static org.hamcrest.MatcherAssert.assertThat;  /**  * Unit test for simple App.  */ public class LauncherTest {     /**      * Create the test case      *      * @param testName name of the test case      */ 	private AndroidDriver driver;      @Before     public void setUp() throws Exception {         // set up appium         //File classpathRoot = new File(System.getProperty("user.dir"));         //File appDir = new File(classpathRoot, "apps");         //File app = new File(appDir, "NotePad.apk");         DesiredCapabilities capabilities = new DesiredCapabilities();         capabilities.setCapability("deviceName","Android");         //capabilities.setCapability("platformVersion", "4.2");         //capabilities.setCapability("platformName", "Android");         //capabilities.setCapability("app", app.getAbsolutePath());         capabilities.setCapability("appPackage", "com.miui.home");         capabilities.setCapability("appActivity", "com.miui.home.launcher.Launcher");         //capabilities.setCapability("appActivity", ".NotesList");         //capabilities.setCapability("autoLaunch", "false");         //capabilities.setCapability("noReset", true);         driver = new AndroidDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);     }       @After     public void tearDown() throws Exception {         driver.quit();     }          @Test     public void launchNotePad() throws InterruptedException{     	     	WebElement el = null;     	WebElement screen = null;     	Point point = null;     	Dimension size = null;     	     	boolean found = false;     	int pageCount = 3; //Assume that there are totally 3 screens to be swiped.     	     	int xStart = -1;     	int yStart = -1;     	int xEnd = -1;     	int yEnd = -1;     	     	//Get the start and end coordinates for swipe     	Thread.sleep(3000);     	screen = driver.findElementById("com.miui.home:id/cell_layout");     	point = screen.getLocation();     	size = screen.getSize();     	xEnd = point.getX();     	yEnd = point.getY() + size.getHeight()/2;     	xStart = point.getX() + size.getWidth() - 5;     	yStart = yEnd;     	     	System.out.println("starX:" + xStart +"\nstartY:" + yStart + "\nendX:" + xEnd + "\nendY:" + yEnd);     	     	//本来想通过判断屏幕上的几个小圆点来判断究竟有多少个屏幕的,但发觉xPath根本不起效,父目录感觉根本起不了定位作用,只有最后的//android.widget.ImageView起效,所以一下找出75个元素。     	/*     	List<WebElement> pageImages = driver.findElementsByXPath("//android.view.View/android.widget.LinearLayout/android.widget.ImageView");     	assertThat(pageImages.size(),is(3));     	for (WebElement e: pageImages) {     		e.click();     	}     	*/     	     	//Swipe all screens till get the expected control     	int currentPage = 0; 	     	while (found == false && currentPage < pageCount) {     		found = true;     		     		currentPage += 1;     		     		try {         		el = driver.findElementByName("Notes");         	}catch (NoSuchElementException e) {         		found = false;         		System.out.println(e);         	}     		     		if (found == true)     			break;     		     		driver.swipe(xStart, yStart, xEnd, yEnd, 100);         	Thread.sleep(1000);     	}     	     	assertThat(found,is(true));     	assertThat(el,notNullValue());     	         el.click();                                }      } 步骤说明大概如下:|    作者  |      自主博客  |      微信  |      CSDN  |   
|    天地会珠海分舵  |      http://techgogogo.com     |      服务号:TechGoGoGo 扫描码:     |      
 推荐阅读: 
        
    免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。 相关阅读 |