selenium 中 元素等待处理 显示 隐示

package com.ChaptDemo01;

import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

import java.util.concurrent.TimeUnit;

/**
 * Created by Administrator on 2018/5/28 0028.
 */



@Test
public class waitDemo {
    WebDriver driver;
    @BeforeMethod
    public void opendriver(){
        System.setProperty("webdriver.chrome.driver","E:\\browser\\chromedriver.exe");
        driver = new ChromeDriver();
    }


    @Test
    public void waitTest() throws InterruptedException {

        driver.get("新建文件夹/selenium_html/index.html");
        driver.findElement(By.xpath("//*[@id=\"wait\"]/input")).click();

        
        //不建议使用sleep  不确定的因素太多

        //方法一  :调用全局(隐示)等待  10秒钟没有找到元素 就执行下一步
        //driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);


        /*****************************************************************/
        //方法二  :显示等待
        //1.实例化一个类
        WebDriverWait wait =new WebDriverWait(driver,20);
        //2.调用方法 ExpectedConditions(类)下的presenceOfElementLocated
        //一旦需要的元素一出现 就直接进行下一步 而不会继续等待;如果一直没有获取元素则会报超时错误
        wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//*[@id=\"display\"]/div")));


        String str =driver.findElement(By.xpath("//*[@id=\"display\"]/div")).getText();
        Assert.assertEquals(str,"wait for display");


    }


    @AfterMethod
    public void Close() throws InterruptedException {
        Thread.sleep(2000);
        driver.quit();
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值