For Angular and Jquery it is possible to check if something on the page is currently animating. For example I can just use the css selector ".ng-animating" to check if any elements have the animating class on them.
We use this a lot for our end 2 end test automation, for example to only assert if elements are displayed on the page after the user has done some action. We will just wait untill no elements have the ".ng-animating class".
We started using Vue for a few new projects and I am trying to also find out if it is possible so query some attribute, or set some event when it start to animate and finishes the animations. Does somebody know how to? Or have a different approach which will also work?