Fixed feature tests failure issue due to binary path feature.

This commit is contained in:
Yogesh Mahajan
2021-06-23 11:55:27 +05:30
committed by Akshay Joshi
parent 0b52ef6eb0
commit 2486b79450
2 changed files with 24 additions and 10 deletions

View File

@@ -1329,3 +1329,7 @@ class PgadminPage:
except TimeoutException:
element_located_status = False
return element_located_status
def clear_edit_box(self, edit_box_webelement):
while not edit_box_webelement.get_attribute("value") == "":
edit_box_webelement.send_keys(Keys.BACK_SPACE)