I have created tests using selenium 2, I'm also using the selenium standalone server to run the tests.

The problem is that if I run one test, it works. If I run multiple tests, some of them fail. If I try then to run a failed test, it works.

Could the tests be running on threads? I've used the NUnit GUI, and TeamCity to run the tests ... both give the same results : different tests fail, run again, other tests fail.

Any thoughts ?

EDIT

The tests shouldn't depend on one another. The database is emptied and repopulated for every test. I guess the only problem could be that the database is not emptied correctly ... but then if I run the same test multiple times it should also fail.

EDIT2

The tests fail with "element not found". I'll try and add a "WaitForElement" that retries every few milliseconds and maybe that will fix it.

link|improve this question

80% accept rate
what is the nature of the tests? are they thread safe? dependent on each other? – Randy Feb 2 at 16:57
feedback

1 Answer

up vote 1 down vote accepted

Without knowing the exact errors that are thrown its hard to say. The normal causes of flakiness tend to be waits are not set to a decent time or the web server can't handle that many requests.

If the DB is on the same machine as the webserver, and why shouldnt it be on a build box, it can be intensive to clear it out.

I would recommend going through each of the errors and making it bullet proof for that and then moving to the next. I know people who run there tests all the time without flakiness so its definitely an environmental thing that can be sorted.

link|improve this answer
thanks for the answer, the tests are failing with "Element not found" – sirrocco Feb 3 at 9:51
Then your tests are running too quickly for the page that is loading. – AutomatedTester Feb 3 at 11:52
Is there a way to increase that delay globally ? In selenium ? – sirrocco Feb 3 at 12:03
Look into implicit wait. A good strategy is to set a decent implicit wait time and then use explicit waits for potentially longer operations. – prestomanifesto Feb 3 at 17:14
Hi, eventually increasing the wait time worked. Thanks. – sirrocco Feb 5 at 8:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.