From dec1ed5fe246d27a94ad6a3bafef16dcf313735e Mon Sep 17 00:00:00 2001 From: Sam Bible Date: Fri, 6 Sep 2024 10:11:57 -0500 Subject: [PATCH] Add wait_displayed to repo table read --- airgun/views/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airgun/views/common.py b/airgun/views/common.py index a209b3fdc..38d1ca70d 100644 --- a/airgun/views/common.py +++ b/airgun/views/common.py @@ -464,6 +464,7 @@ def remove(self, value): def read(self): """Read all table values from both resource tables""" + self.browser.wait_for_element(self.table, exception=False, visible=True) self.select_status("All") return self.table.read()