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()