mojotech / pioneer

Integration Testing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Any node should be able to requery itself based on its origin selector

samccone opened this issue · comments

foo.find('.x')
.then(function(el) {
  return el.find('.zap')
}
.then(function(el) {
  return el.find('.tom')
  // if this throws a staleElementError then requery up the chain until we find a valid node and walk back down
}