In Selenium 2 I want to ensure that an element on the page that the driver has loaded does not exist. I\'m including my naive implementation here.
WebEle
Use assertFalse :)
assertFalse(isElementPresent(By.className("commentEdit")));