APPium+java如果找到这个元素则继续执行下面的元素,实现方法

方法

import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;

public class Chazhaoyuansu {
    
    /**
     * 如果找到这个元素则继续执行下面的元素,找不则返回失败false,返回布尔值
     * @param by
     * @param waitTimes
     * @return
     */
    public static boolean whetherElementVisable(final By by, int waitTimes) {
        for (int attempt = 0; attempt < waitTimes; attempt++) {  
            try {
                return true;
            } catch (NoSuchElementException e) {
                if (attempt == waitTimes - 1) {
                    return false;
                }
            }
        }
        return false;
    }
    
    
}

 

 

调用

 

 //如果有协议弹窗,则点击同意
        if (Chazhaoyuansu.whetherElementVisable(By.id("com.cmcc.p.poc:id/tv_title"), 1)) {
            //点击同意
            androidDriver.findElementById("com.cmcc.p.poc:id/tv_confirm").click();
        }else {
            //点击不同意
            androidDriver.findElementById("com.cmcc.p.poc:id/tv_cancel").click();
        }

 

相关文章

前言:appium可以说是app最火的一个自动化框架,它的主要优势...
(原文:https://www.cnblogs.com/fancy0158/p/10047906.htm...
一Appium介绍1.1含义开源,跨平台,多语言支持的移动应用自动...
前言:Appium是一个自动化测试开源工具,支持iOS平台和Andro...
转:https://blog.csdn.net/Tigerdong1/article/details/801...
(原文:https://www.cnblogs.com/fancy0158/p/10056418.htm...