I have a python selenium code that upload a local video and click the button, the button can be clicked when video successfully uploaded so I try with EC.element_to_be_clickable
and EC.visibility_of_element_located
and when the button is clickable print a simple message, but always I got the message before video upload complete.
this is my code :
JavaScript
x
11
11
1
file_uploader = driver.find_element_by_xpath('xpath_input')
2
file_uploader.send_keys(myvideo_file)
3
while True:
4
try:
5
WebDriverWait(driver, 1000).until(EC.element_to_be_clickable((By.XPATH, 'button_xpath')))
6
WebDriverWait(driver, 1000).until(EC.visibility_of_element_located((By.XPATH, 'button_xpath')))
7
break
8
except:
9
pass
10
print("Button ready to be clicked!")
11
Advertisement
Answer
What about using get_attribute
of button.
If button is not clickable like <button type="button" class="btn-post primary disabled">Post</button>
, then waiting until disabled disapeared in class name like <button type="button" class="btn-post primary">Post</button>
JavaScript
1
13
13
1
file_uploader = driver.find_element_by_xpath('xpath_input')
2
file_uploader.send_keys(myvideo_file)
3
4
while True:
5
# I insert finding element inside while loop because some sites delete existing elements and create new ones.
6
# In this case, even if the deleted element and new one's xpath are the same, StaleElementException occurs.
7
class_name = driver.find_element_by_xpath('xpath_input').get_attribute('class')
8
9
if 'disabled' not in class_name:
10
break
11
12
time.sleep(1)
13