51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

查看: 6340|回复: 5
打印 上一主题 下一主题

webdriver2.0 页面的显性等待和隐性等待有什么区别

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2012-5-7 15:48:46 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
如题 谢谢,官网文档没怎么看明白。
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

6#
发表于 2013-2-20 13:51:06 | 只看该作者
楼主好人
回复 支持 反对

使用道具 举报

  • TA的每日心情
    慵懒
    2019-4-10 17:57
  • 签到天数: 35 天

    连续签到: 1 天

    [LV.5]测试团长

    5#
    发表于 2012-10-29 09:56:12 | 只看该作者
    同上~~~
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    4#
    发表于 2012-10-26 13:55:47 | 只看该作者
    同上
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    3#
    发表于 2012-10-8 15:16:11 | 只看该作者
    留个脚印,以后一定有用
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    2#
    发表于 2012-5-9 23:42:40 | 只看该作者
    明确的等待
     
    明确的等待是指在代码进行下一步操作之前等待某一个条件的发生。最不好的情况是使用Thread.sleep()去设置一段确认的时间去等待。但为 什么说最不好呢?因为一个元素的加载时间有长有短,你在设置sleep的时间之前要自己把握长短,太短容易超时,太长浪费时间。selenium webdriver提供了一些方法帮助我们等待正好需要等待的时间。利用WebDriverWait类和ExpectedCondition接口就能实现这一点。
     
     
    下面的html代码实现了这样的一种效果:点击click按钮5秒钟后,页面上会出现一个红色的div块。我们需要写一段自动化脚本去捕获这个出现的div,然后高亮之。
     
     
    Html代码

    Wait.html

    <html>
        <head>
            <title>Set Timeout</title>
            <style>
                .red_box {background-color: red; width = 20%; height: 100px; border: none;}
            </style>
            <script>
                function show_div(){
                    setTimeout("create_div()", 5000);
                }
      
                function create_div(){
                    d = document.createElement('div');
                    d.className = "red_box";
                    document.body.appendChild(d);
                }
            </script>
        </head>
        <body>
            <button id = "b" onclick = "show_div()">click</button>
        </body>
    </html>


    下面的代码实现了高亮动态生成的div块的功能:
    &nbsp;
    Java代码

    import org.openqa.selenium.By;
    import org.openqa.selenium.JavascriptExecutor;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.firefox.FirefoxDriver;
    import org.openqa.selenium.support.ui.ExpectedCondition;
    import org.openqa.selenium.support.ui.WebDriverWait;


    public class WaitForSomthing {

            /**
             * @author gongjf
             */
            public static void main(String[] args) {
                    // TODO Auto-generated method stub
                    System.setProperty("webdriver.firefox.bin","D:\\Program Files\\Mozilla Firefox\\firefox.exe");  
                    WebDriver dr = new FirefoxDriver();
                    String url = "file:///C:/Documents and Settings/gongjf/桌面/selenium_test/Wait.html";// "/Your/Path/to/Wait.html"
                    dr.get(url);
                    WebDriverWait wait = new WebDriverWait(dr,10);
                    wait.until(new ExpectedCondition<WebElement>(){
                            @Override
                            public WebElement apply(WebDriver d) {
                                    return d.findElement(By.id("b"));
                            }}).click();
                   
                    WebElement element = dr.findElement(By.cssSelector(".red_box"));
                    ((JavascriptExecutor)dr).executeScript("arguments[0].style.border = \"5px solid yellow\"",element);  
                   
            }
    }


    上面的代码WebDriverWait类的构造方法接受了一个WebDriver对象和一个等待最长时间(10秒)。然后调用until方法,其中重写了 ExpectedCondition接口中的apply方法,让其返回一个WebElement,即加载完成的元素,然后点击。默认情况下,WebDriverWait每500毫秒调用一次ExpectedCondition,直到有成功的返回,当然如果超过设定的值还没有成功的返回,将抛出异常。


    隐性等待
    &nbsp;
    隐性等待是指当要查找元素,而这个元素没有马上出现时,告诉WebDriver查询Dom一定时间。默认值是0,但是设置之后,这个时间将在WebDriver对象实例整个生命周期都起作用。上面的代码就变成了这样:


    Java代码


    import java.util.concurrent.TimeUnit;

    import org.openqa.selenium.By;
    import org.openqa.selenium.JavascriptExecutor;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.firefox.FirefoxDriver;
    import org.openqa.selenium.support.ui.ExpectedCondition;
    import org.openqa.selenium.support.ui.WebDriverWait;


    public class WaitForSomthing {

            /**
             * @author gongjf
             */
            public static void main(String[] args) {
                    // TODO Auto-generated method stub
                    System.setProperty("webdriver.firefox.bin","D:\\Program Files\\Mozilla Firefox\\firefox.exe");  
                    WebDriver dr = new FirefoxDriver();
                   
                    //设置10秒
                    dr.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
                   
                    String url = "file:///C:/Documents and Settings/gongjf/桌面/selenium_test/Wait.html";// "/Your/Path/to/Wait.html"
                    dr.get(url);
                     //注释掉原来的
                    /*WebDriverWait wait = new WebDriverWait(dr,10);
                    wait.until(new ExpectedCondition<WebElement>(){
                            @Override
                            public WebElement apply(WebDriver d) {
                                    return d.findElement(By.id("b"));
                            }}).click();*/
                    dr.findElement(By.id("b")).click();
                    WebElement element = dr.findElement(By.cssSelector(".red_box"));
                    ((JavascriptExecutor)dr).executeScript("arguments[0].style.border = \"5px solid yellow\"",element);  
                   
            }
    }


    小结:

    两种方法任选其一
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-5-19 22:16 , Processed in 0.072837 second(s), 28 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表