I want to enter a value into a field
I find the element by:
driver.find_element_by_xpath('//*[@id="cell--gE-Ez1qtyIA"]')
And I do this to display the text and click:
driver.find_element_by_xpath('//*[@id="cell--gE-Ez1qtyIA"]').click()
driver.find_element_by_xpath('//*[@id="cell--gE-Ez1qtyIA"]').text
So far so good, but I use this code when I want to send a value to this field:
driver.find_element_by_xpath('//*[@id="cell--gE-Ez1qtyIA"]').send_keys('test')
Nothing happens and the field value does not change