I am new to selenium web driver. I tried to automate login to yahoo mail using Selenium java on eclipse IDE. But, the send key command does not work on the password edit box.
public static void main(String[] args) {
System.setProperty("webdriver.edge.driver", "D:\\Jav\\msedgedriver.exe");
WebDriver papa = new EdgeDriver();
papa.get("https://login.yahoo.com//");
papa.manage().window().maximize();
papa.findElement(By.id("login-username")).sendKeys("adcbbb");
papa.findElement(By.id("login-signin")).click();
papa.findElement(By.xpath("//*[@id=\'login-passwd\']")).sendKeys("123456");
Why isn't this working, and how can I fix it?
According to your code you have:
The only issue i can see as of now is that you must pass values to input fields and only than click to Sign In. So your code should be in this order:
Also, if you have attributes: <id or <name use them first, instead of creating a XPATH