When I interact with the page, loader appears for couple of seconds, and then it disappears completely from page html.
<div class="loader">
<img src="/static/media/loading-anim-windmill.9f645983.gif" alt="loading"><p>Loading...</p>
</div>
for waiting this element to appear i simply write
element = WebDriverWait(elem, 10).until(EC.element_to_be_clickable((by, val)))
but how do I know when did it disappear? and how do i measure this time range?