You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 3, 2026. It is now read-only.
classelement_to_be_clickable(object):
""" An Expectation for checking an element is visible and enabled such that you can click it."""def__init__(self, locator):
self.locator=locatordef__call__(self, driver):
element=visibility_of_element_located(self.locator)(driver)
ifelementandelement.is_enabled():
returnelementelse:
returnFalse
For this HTML structure , elements always will be visible but not clicable.
Obtained Behaviour
Not have wait_clicable method for
ControlBaseand inherit classesExpected Behaviour
ControlBaseand inherit classesControlBaseand inherit classesTests
nav_basemethod ele_wait_clicablenav_basemethod ele_wait_not_clicablecontrol_basemethod wait_clicablecontrol_basemethod wait_not_clicableNotes
For this HTML structure , elements always will be visible but not clicable.