Hi i am trying to send input value using the sendkey command however it isn't changing.
HTML:
<div class="SimpleAutocomplete_autocompleteContent AutocompleteOverrides_autocompleteContent SimpleAutocomplete_opened AutocompleteOverrides_opened"><div class="SimpleAutocomplete_selectedWords AutocompleteOverrides_selectedWords"><input placeholder="" required="" value=""></div></div>
I have tried:
text = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[@class='SimpleAutocomplete_autocompleteContent AutocompleteOverrides_autocompleteContent']"))).sendkeys("aa")
and
text = driver.find_element_by_id("placeholder").send_keys("aa")
all failed
snippets of the screen :