I have one input box where have numbers, I want to clean it but when call
driver.find_element_by_xpath('/html/body/div[1]/div/div[3]/form/section/div/div/input').clear()
they not remove. If I run same from Python Shell it working. Tried with timeout but can't clear.
I need to sendkeys
driver.find_element_by_xpath('/html/body/div[1]/div/div[3]/form/section/div/div/input').send_keys('50')
Tried
time.sleep(3)
driver.find_element_by_xpath('/html/body/div[1]/div/div[3]/form/section/div/div/input').clear()
time.sleep(3)
driver.find_element_by_xpath('/html/body/div[1]/div/div[3]/form/section/div/div/input').send_keys('50')
and result is 2050