I'm getting some sort of test pollution. When I run failing tests individually, they pass. When I run them all together, I get errors. The errors are not related to database. I can't understand the errors. For instance: page:
errorModule (wait: true) { module ErrorModule }
errorModule: static content = { error (required: false) { $("h3.error") } }
spec:
assert page.errorModule
Gives exception: org.openqa.selenium.NoSuchElementException: Unable to locate element: {"method":"tag name","selector":"html"}
I don't understand because the content of the module is not required. Also, what pollution from another test could cause this? My tests are too numerous to list.
My only idea is the cookies that are getting set not by my program. There are a bunch of cookies with odd names such as "ba743b", "kvcd", "kn_ai", etc with cryptic values such as "1361461306476" and "1.1361461306.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)". Does anyone know where these cookies might come from and how to clear them at the end of a test? Is that even important? They are not session cookies, they have expiration dates. I don't know how to delete these cookies which I do not think my code creates. But it could have nothing to do with this.
page.errorModuleis required, you've seterrorModule.errorto be not required. OTOH it would be nice if you have a name Engineer. – Tomasz KalkosiĆski Feb 21 at 16:04