I'm testing a registration page and I've tried name, xpath, id, class and nothing seems to work.
here is my selenium code
driver.findElement(By.id("pushMenu")).click();
Thread.sleep(2000);
driver.findElement(By.linkText("Register")).click();
Thread.sleep(2000);
WebElement l = driver.findElement(By.name("name"));
and here is the form tag I'm trying to access
<input type="text" name="name" placeholder="">
explicit wait attempt code:
WebDriverWait wait = new WebDriverWait(driver, 10);
WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.name("name")));
driver.findElement(By.name("name")).sendKeys("Testing100");