public static void main(String[] args) throws FileNotFoundException, InterruptedException { WebDriver driver = new ChromeDriver(); driver.get("https://www.nytimes.com/games/wordle/index.html"); try { WebElement closeButton = driver.findElement(By.id("pz-gdpr-btn-closex")); closeButton.click(); } catch (NoSuchElementException e) { System.out.println("Close button not found: " + e.getMessage()); } try { WebElement secondCloseButton= driver.findElement(By.className("game-icon")); secondCloseButton.click(); } catch (NoSuchElementException e) { System.out.println("Close button not found: " + e.getMessage()); } TimeUnit.MICROSECONDS.sleep(200000); Actions actions = new Actions(driver); actions.sendKeys("house").sendKeys(Keys.ENTER).perform(); // Close the driver TimeUnit.SECONDS.sleep(10); driver.quit(); }