this.waitFor(

function() {

return this.evaluate(function() {  //Function testFX

return !!($("#the_last_tr_td").text().trim() == "다운로드");

});

}

,function () {   //function Then

button_text = this.evaluate(function() {

return $("#the_last_tr_td").text().trim();

});

}

,function () { //timeout

console.log("Sorry, timeout!");

}

,10000 //timeout limit

);