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
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
ControlBase
and inherit classesExpected Behaviour
ControlBase
and inherit classesControlBase
and inherit classesTests
nav_base
method ele_wait_clicablenav_base
method ele_wait_not_clicablecontrol_base
method wait_clicablecontrol_base
method wait_not_clicableNotes
For this HTML structure , elements always will be visible but not clicable.
The text was updated successfully, but these errors were encountered: