Crawling1 [Selenium/Java] 에러org.openqa.selenium.ElementNotInteractableException: element not interactable | click(), sendKeys(), executeScript() org.openqa.selenium.ElementNotInteractableException: element not interactable 존재하는 요소이지만 클릭이 안되는 경우 나타나는 에러이다. webElement = driver.findElement(By.cssSelector("#searchBtn > img")); // 기존코드 //webElement.click(); // 방법 1. //webElement.sendKeys(Keys.ENTER); // 방법 2. -> 해결 JavascriptExecutor jsx = (JavascriptExecutor) driver; jsx.executeScript("arguments[0].click;", webElement); 가장 흔하게 보이는 해결 방법은 cli.. 2023. 12. 12. 이전 1 다음