• 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();
            }

  • 相关阅读:
    爬虫问题总结
    keras快速开始序贯(Sequential)模型
    参数估计回顾
    CSDN-markdown编辑器 字体颜色修改
    贝叶斯决策学习
    概率论中的基本公式
    VMware tools安装
    Python 常用技巧:库/模块的安装、查看和卸载
    Google 机器学习笔记一 Pandas简介
    支持向量机 数学推导 part3
  • 原文地址:https://www.cnblogs.com/tiansc1/p/15704086.html
Copyright © 2020-2023  润新知