[Test]
public void validarNome()
{
IWebDriver nav2 = new FirefoxDriver();
nav2.Navigate().GoToUrl("http://localhost:8080/usuarios/new");
IWebElement mail = nav2.FindElement(By.Name("usuario.email"));
IWebElement botao = nav2.FindElement(By.Id("btnSalvar"));
mail.SendKeys("axavier@empresa.com.br");
botao.Click();
bool b_mesnagem = nav2.PageSource.Contains("Nome obrigatorio!");
Assert.IsTrue(b_mesnagem);
//nav2.Close();
}