我的项目是使用appium(android)、selenium(java)在voot应用程序上进行自动化测试。我正在使用appium桌面检查器定位元素的id/xpath,并在eclipse中复制它。主页上有一个“gottit”按钮,没有id或xpath,我该怎么做
package tests;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.Test;
import io.appium.java_client.MobileElement;
import io.appium.java_client.TouchAction;
import io.appium.java_client.touch.offset.PointOption;
public class test extends BaseClass{
@Test
public void test1(){
driver.manage().timeouts().implicitlyWait(1000, TimeUnit.SECONDS);
MobileElement el1 = (MobileElement) driver.findElementById("com.tv.v18.viola:id/btn_login_mobile");
el1.click();
System.out.println("Completed test1");
MobileElement el2 = (MobileElement) driver.findElementById("com.tv.v18.viola:id/hint_text");
System.out.println("Completed test2");
driver.hideKeyboard();
MobileElement el3=(MobileElement) driver.findElementById("com.tv.v18.viola:id/btn_login");
el3.click();
MobileElement el4=(MobileElement) driver.findElementById("com.tv.v18.viola:id/password");
System.out.println("completed test2");
driver.hideKeyboard();
}
@Test
public void test2() {
MobileElement el5=(MobileElement) driver.findElementById("com.tv.v18.viola:id/btn_login");
el5.click();
System.out.println("Completed test3");
}
@Test
public void test3() {
MobileElement el6=(MobileElement) driver.findElementById("com.tv.v18.viola:id/btn_home_page");
el6.click();
driver.manage().timeouts().implicitlyWait(10000, TimeUnit.SECONDS);
TouchAction action0=new TouchAction(driver); //not working
action0.tap(PointOption.point(612,1329)).perform();//not working
}
截图
1条答案
按热度按时间vom3gejh1#
driver.findelementbyname(“找到了”).click();
或
使用按钮的位置,并使它。(应用程序,如何获得x和y坐标的刷卡)