I have a set of python Selenium tests that run on chromedriver, and I've found that certain tests will fail occasionally because chromedriver crashes.
If chromedriver crashes during one of my tests it's almost always at the same spot in that test, but I've looked at the tests and there doesn't seem to be anything that would cause the crash. Often it's just a link click that seems to cause it.
I can run the same test twice and one time it will pass, the other time it will fail because chromedriver crashes.
I'm running the latest version of the selenium standalone server (2.18.0), Chrome version 17 and python version 2.7.1.
Does anyone know why this might be happening?
Thanks in advance!