Skip to content
Advertisement

Python selenium wait until button clickable

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

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
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement