-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Issue with ngAnimate when using Selenium-TestNG for testing our application #13619
Comments
Thanks for the report. Can you please test with the latest 1.3.20? Or even better 1.4.9? 1.3.x only gets critical fixes. |
Thank you for your prompt message. I test with angular 1.3.20 and angular-animate 1.3.20, and also with angular 1.4.8 and angular-animate 1.4.8. Unfortunately the same bad behavior occurs. |
Hello Narretz. Have you reproduced this behavior? What is the status for this issue? Thank you. |
I haven't tested this yet. So the app on github shows this behavior? I can clone and run it and the error will appear? |
Yes I hope so. |
Hi Narretz, What about this issue? Our team is currently blocked with this issue and we don't know how to override it. |
We have some (unrelated to this specfic problem) "speed" problem with selenium. |
@zann12 I'll take a look right now. But don't forget, this is not a support forum, this tracker is only for bugs and feature requests. Sorry if I gave off a different impression. Ok, regarding your project - I see two github repos, but I have actually no idea how to use them together. So unless you can give me these instructions, I can't test this. What you can try is to disable animations in your selenium tests by adding a test-specific config. For example, with protractor it would look like this: http://stackoverflow.com/questions/26584451/how-to-disable-animations-in-protractor-for-angular-js-appliction In any case, end to end tests for angular apps are much easier with protractor - you should consider using that over plain Selenium. |
Sorry, I can't help without clear instructions on the project. Closing. Feel free to reopen if you have more info for me. |
Hello all,
I am currently facing to a random failure behavior on my Selenium which only occurs when my application has the ngAnimate module as dependency: angular.module('myApp', [ 'ngAnimate' ]);.
The angular-animate library seems to be too slow when Selenium is testing our application. We don't reproduce this behavior when we use our application manually.
When the input text failed with the ngMaxlength constraint, we can observe the ng-valid-maxlength class is removed and the ng-invalid-maxlength class is added but the ng-invalid class is not pushed in the dom and the ng-valid class is kept in the DOM instead of to be removed.
You will find below some parts of sources code, but you also can find the all projects (simple angular app and selenium/TestNG test) here:
Libs:
index.html
Selenium Test
Selenium / WITH ngAnimate / with an input which contains the following two constraints: ngMaxlength & ngMinlength
App.js
Part of Index.html
Selenium Test Result
Selenium / WITH ngAnimate / with an input which contains only one constraint: ngMaxlength
App.js
Part of Index.html
Selenium Test Result
Selenium / WITHOUT ngAnimate / with an input which contains the following two constraints: ngMaxlength & ngMinlength
App.js
Part of Index.html
Selenium Test Result
Selenium / WITHOUT ngAnimate / with an input which contains only one constraint: ngMaxlength
App.js
Part of Index.html
Selenium Test Result
Resume
I use Selenium to test an input which contains always the following directive attribute: ngMaxlength.
When I use both the ngMaxlength directive attribute and the ngMinlength directive attribute, the number of failures is upper than if I do not used the ngMinlength directive attribute.
Why the angular-animate fails with our application, with our tests?
Can someone give me some light on why we have this behavior please?
Thank you very much.
The text was updated successfully, but these errors were encountered: