1

I used many options, but not one did not help

The place where you need to enter the value

Used options:

1

Then I tried the same thing, but with a separate method

method

2

option 3

3

option 4

4

option 5 (this option records the value, but the page does not see it)

code

5

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
Tenny
  • 11
  • 1
  • Hey Tenny, welcome to stackoverflow. Please refer to [Why should I not upload images of code/data/errors when asking a question?](https://meta.stackoverflow.com/questions/285551/why-should-i-not-upload-images-of-code-data-errors-when-asking-a-question). – Pellay Apr 26 '22 at 10:48

1 Answers1

0

Try the below

elem = WebDriverWait(driver,10).until(EC.visibility_of_element_located((By.XPATH,"xpath")))

elem.send_keys("Text")
Akzy
  • 1,817
  • 1
  • 7
  • 19
  • Alas, waiting for the element didn't help. The recording goes through as if used without waiting, but then it is quickly deleted – Tenny Apr 26 '22 at 11:07