I want to verify if a button is clickable, so I tried using the following :
def save_button_status(browser):
button = browser.find_element_by_class_name(save_new_pass_button)
print button.is_enabled()
But it is not verifying the button status, all I can understand from this code is if the button is enabled
it is not verifying the button status?? is there any exception??button.is_enabled()??