Re: [geb-user] Problem with firefox driven when running many tests

2017-05-22 Thread jérémie GUIDOUX
> > Thanks a lot :) > That works :) I don't really understand why but that's work :) > > -- You received this message because you are subscribed to the Google Groups "Geb User Mailing List" group. To unsubscribe from this group and stop receiving emails from it, send an email to geb-user

Re: [geb-user] Problem with firefox driven when running many tests

2017-05-21 Thread Marcin Erdmann
Interesting. Looks like Firefox might not be waiting for the DOM to fully load before returning control to your code after a call to WebDriver#get(String). I've experienced that in the past and had people report it in this group as well. I would suggest you enable global at check waiting which was

Re: [geb-user] Problem with firefox driven when running many tests

2017-05-20 Thread jérémie GUIDOUX
Thanks for your answer .) The login action is synchronous. Apparently, the screenshot says that the test works well. but the test fail. That's weird. maybe a timeout problem. Le vendredi 19 mai 2017 15:36:54 UTC+2, Marcin Erdmann a écrit : > > Is the login action synchronous (i.e. using

Re: [geb-user] Problem with firefox driven when running many tests

2017-05-19 Thread Marcin Erdmann
Is the login action synchronous (i.e. using a regular form post) or asynchronous (e.g. using AJAX or part of a single page application)? If you take screenshots at the end of each test (e.g. using GebReportingSpec) do you see the login page or home page when the test fails? On Fri, May 19, 2017 at

[geb-user] Problem with firefox driven when running many tests

2017-05-19 Thread jérémie GUIDOUX
I have a strange problem with the Firefox driver. When I launch a simple test. It works. But when I duplicate this test it works not. But with chrome it works. The problem is only with firefox driver. My test is simple: I go to the login page. write user and password and click on the login butt