1
I figured it out. I was using this as a reference, and the problem was…
- When using Selenium find_element_by_blah(), if the element is loaded via Ajax, you need to wait until it’s loaded before looking for it. Hence the
wait_for_css()
method in the link. (I was indeed using that method). - The difference between the
manage.py
test runner andcoverage test
running is probably due to time – if I added a time.sleep(2) before checking for the element, the test would pass in both cases. - But why doesn’t the
wait_for_css
method prevent this problem??? -
Because I naively created the
NoSuchElementException
, likeclass NoSuchElementException(Exception) pass
instead of importing it:
from selenium.common.exceptions import NoSuchElementException
(and thusfind_css
method from the link was raising a different exception than what Selenium was expecting, and failing and exiting instead of waiting).
Oy.
Source:stackexchange.com