Although the test is clear and simple i\'m always facing the same problem while tring to send keys (username; password) the password field is written in place of username !
This is strange issue. But Here is the solution for this.
public void hideKeyBoard()
{
try{driver.hideKeyboard();}
catch(Exception e){}
}
Use above method to hide keyboard
driver.findElement(By.id("input_email")).click();
driver.getKeyboard().sendKeys("e@e.emma.com");
hideKeyboard();
driver.findElement(By.id("input_password")).click();
hideKeyboard();
driver.getKeyboard().sendKeys("00000000");
Hope this helps :)