• phantomjs waitFor


    function waitFor(testFx, onReady, timeOutMillis) {
    var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 120000, //< Default Max Timout is 3m
    start = new Date().getTime(),
    condition = false,
    interval = setInterval(function() {
    if ( (new Date().getTime() - start < maxtimeOutMillis) && !condition ) {
    // If not time-out yet and condition not yet fulfilled
    condition = (typeof(testFx) === "string" ? eval(testFx) : testFx()); //< defensive code
    } else {
    if(!condition) {
    // If condition still not fulfilled (timeout but condition is 'false')
    // console.log("'waitFor()' timeout");
    phantom.exit(1);
    } else {
    // Condition fulfilled (timeout and/or condition is 'true')
    // console.log("'waitFor()' finished in " + (new Date().getTime() - start) + "ms.");
    typeof(onReady) === "string" ? eval(onReady) : onReady(); //< Do what it's supposed to do once the condition is fulfilled
    clearInterval(interval); //< Stop this interval
    }
    }
    }, 5000); //< repeat 5000ms
    };

  • 相关阅读:
    HDFS Java API
    HBase Java API
    Hive JDBC
    map.merge() 方法
    循环的4种形式
    Storm 单词计数
    swagger 2.9.2
    ZooKeeper Java API
    服务器添加静态路由
    Win10局域网共享文件夹“用户名或密码不正确”
  • 原文地址:https://www.cnblogs.com/c-x-a/p/7263741.html
Copyright © 2020-2023  润新知