Hello, I am trying to automate the process of buying a product from snapdeal but in the first step itself I am getting an error saying:-
Error:ElementNotVisibleException no such element: Unable to locate element: {"method":"xpath","selector":"//*[@id="sdHeader"]/div[2]/button"}
(Session info: chrome=71.0.3578.98)
WebDriver driver = new ChromeDriver();
driver.get("https://www.snapdeal.com");
driver.findElement(By.xpath("//*[@id=\"sdHeader\"]/div[2]/button")).sendKeys("Adidas Shoes",Keys.ENTER);
This is the code I am using