
Chrome's react dev tooll shows this field like this:

I tried to click this input field first then fill it, but I always get
org.openqa.selenium.InvalidElementStateException: invalid element state: Element is not currently interactable and may not be manipulated
I tried to click it with perform
WebElement element = driver.findElement(By.cssSelector('div.rt-tr > .email-cell[tabIndex="-1"] > input'));
new Actions(driver).moveToElement(element).perform();
but no help.
I try to fill it
mailFilterInputField.value("customer_temporary")on the Page (mailFilterInputField{$('div.rt-tr > .email-cell[tabIndex="-1"] > input')})
but the object not accessable.
could please someone help me?
thank you in advance,
Roland
$("your_selector").click()moveToElement(element).click().perform() assert($('div.rt-table > div.rt-thead.-filters > div.rt-tr').displayed)
$('div.rt-table > div.rt-thead.-filters > div.rt-tr > div[class="rt-th email-cell"] > input')

any idea or hint how I could fill this input field?
$('div.email-cell > input').displayed
$('div.email-cell > input') << "yourEmailAddress"