First-all, I apologize if this question is already answered. I am trying to automate simple login page for aribaweb application. The following source of my web page for login label.
<td class=ffl>
<label for=_$eseed>Login Name:</label></td>
Java source code: I am trying to find out with below piece of code. But, I am not able to go through.
iedriver.findElement(By.id("Login Name")).sendKeys("username");
I have tried using IDE as well, to check label value. I am seeing same issue [error] Element id=_$eseed not found
Any help in this regard is much appreciated.
"Login Name"is not the ID of the input element to which you are trying to send"username".