I'm implementing an EventFiringWebDriver
, respectively, a WebDriverEventListener
, where I need data both from before and after particular events (e.g. beforeClickOn
and afterClickOn
). Since I wasn't able to find anything in the docs, I would like to know if a situtation can occur where a before event isn't immediately followed by its corresponding after event? Something like:
(beforeEventA, beforeEventB, afterEventA, ...)
So, can I rely on the invocation order of before and after?