I am new to Selenium. I just want to send keys to a username text box and send a tab key both at a time so that text box can check for availability of username.
I doubt for Keys.TAB in sendKeys method... if you want to use TAB you need to do something like below:
Keys.TAB
sendKeys
Actions builder = new Actions(driver); builder.keyDown(Keys.TAB).perform()