Hi I'm new to selenium and java. I tried to enter phone numbers in the field but sendkey doesnt work and it gives an error Exception in thread "main" org.openqa.selenium.NoSuchElementException: no such element
below is the code I used.
driver.findElement(By.xpath("//*[@id='content column']/table[1]/tbody/tr/td/form/b/table/tbody/tr/td/table/tbody/tr[2]/td[4]/input")).clear();
driver.findElement(By.xpath("//*[@id='content column']/table[1]/tbody/tr/td/form/b/table/tbody/tr/td/table/tbody/tr[2]/td[4]/input")).sendKeys("123456789");
Please help me on this.