Tried the suggested thing.Waiting for Resend button which comes after 31 seconds of timer:
exports.waitForResendButton = function(driver, callback){
return driver.waitForElementById(this.resendOrCallButton, 32000)
.then(function(err, res){
return callback(err, res)
})
}
But the driver quits without waiting for 32 secs.