From 91bee73e3f9895004ef2f981d8b9234ed2492edc Mon Sep 17 00:00:00 2001 From: Sam Bible Date: Fri, 6 Sep 2024 12:05:52 -0500 Subject: [PATCH] Testing a hard sleep --- airgun/views/common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airgun/views/common.py b/airgun/views/common.py index 38d1ca70d..b4433553c 100644 --- a/airgun/views/common.py +++ b/airgun/views/common.py @@ -1,3 +1,4 @@ +from time import sleep from widgetastic.widget import ( Checkbox, ConditionalSwitchableView, @@ -465,6 +466,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) + sleep(3) self.select_status("All") return self.table.read()