We're having a quick search field on a page which filters the result list of a previous search via an AJAX call.
We have tried several methods of checking the content of the changed list.
At the beginning, there is a list like e.g. this:
<div class="search-list">
<div class="entry">
<div class="job-title">Manager</div>
...
</div>
<div class="entry">
<div class="job-title">Slave</div>
...
</div>
</div>
After the quick search, the whole search search-list will be replaced by an AJAX response with the second entry div being removed.
We're trying to check this condition with the following statement:
page.find('.search-list .job-title').map(&:text) =~ ['Manager']
but it only sees the state before the AJAX request has been made. This is probably due to the condition being checked immediately without waiting for the completion of the AJAX request. We have tried several methods, like settings the Selenium driver's resynchronize option.
Putting a sleep 10 in front of the above line does work, but is an unclean solution. Currently we have no idea how to get this working, does anyone else?