Why does Selenium WebDriver fail to enter a value in an input field?
WebDriver driver = new ChromeDriver();
driver.get("https://www.zoho.com");
driver.findElement(By.id("login_id")).sendKeys("[email protected]");
I’m trying to enter the value in the input field of login id when enter image description herei run the program it not entering the value on input field……
New contributor
dipak is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.