From 240e61817b15f9f565217224f9c8204f5d8596f5 Mon Sep 17 00:00:00 2001 From: cesar991 Date: Thu, 14 Jul 2016 12:05:39 +0200 Subject: [PATCH] Repair PAN8.py --- tests/console/PAN8.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/console/PAN8.py b/tests/console/PAN8.py index 55043fb1fd..45be65e937 100644 --- a/tests/console/PAN8.py +++ b/tests/console/PAN8.py @@ -46,17 +46,23 @@ class PAN8(PandoraWebDriverTestCase): search_agent(driver,"PAN_8") + time.sleep(3) + try: #The user should be able to see the module with Tag self.assertEqual("With tag" in driver.page_source,True) except AssertionError as e: self.verificationErrors.append(str(e)) + time.sleep(3) + try: #The user should NOT be able to see the module without tag self.assertEqual("Without tag" in driver.page_source,False) except AssertionError as e: self.verificationErrors.append(str(e)) + time.sleep(3) + if __name__ == "__main__": unittest.main()