等待页面某元素加载完成的方法

一、先在allocationcommon中写个方法
// 等待页面某元素加载完成(参数:type元素定位类型、by该类型对应的定位值)
    public static void load(String type, String by){
        WebDriverWait wait = new WebDriverWait(driver, 30);
        if ("xpath".equals(type)) {
            wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath(by)));
        } else if("id".equals(type)) {
            wait.until(ExpectedConditions.visibilityOfElementLocated(By.id(by)));
        } else if("name".equals(type)) {
            wait.until(ExpectedConditions.visibilityOfElementLocated(By.name(by)));
        } else if("cssSelector".equals(type)) {
            wait.until(ExpectedConditions.visibilityOfElementLocated(By.cssSelector(by)));
        } else if("linkText".equals(type)) {
            wait.until(ExpectedConditions.visibilityOfElementLocated(By.linkText(by)));
        } else {
            System.err.println("请输入正确的元素定位方式:xpath、id、name、cssSelector、linkText之一");
        }
    }

二、在Element中调用此方法

public static WebElement allocationButton(WebDriver webDriver){
    String xpath = "(//button[@type='button'])[4]";
    MachineCommon.load("xpath",xpath);
    webElement = webDriver.findElement(By.xpath(xpath));
    return webElement;

三、在具体的test中,调用此元素

MachineElement.allocationButton(driver).click();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值