I enter text into an iframe that is in a modal window. Everything is ok, the text is entered. But when I save the modal window, the text from the field disappears. I use this method to enter text
new WebDriverWait(driver, 10).until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(element));
WebElement body = driver.findElement(By.cssSelector("body"));
driver.executeScript("arguments[0].innerHTML = arguments[1]", body, value);
driver.switchTo().defaultContent();
I see that the text is entered into the field and I save the form that is in the modal window
submitButton.click();
Does anyone know why this field is being cleared?