1 parent f543b39 commit 45ac7e8Copy full SHA for 45ac7e8
1 file changed
paf/uielement.py
@@ -435,8 +435,9 @@ def __create_action_chain(self):
435
436
def click(self):
437
def _action(web_element: WebElement):
438
- actions = self.__create_action_chain()
439
- actions.click(web_element).perform()
+ web_element.click()
+ #actions = self.__create_action_chain()
440
+ #actions.click(web_element).perform()
441
442
self.__web_element_action_sequence(_action, "click")
443
return self
0 commit comments