diff --git a/test/Selenium/BaseTestCase.py b/test/Selenium/BaseTestCase.py index 2cf73e04066689d2f00d52d695db973e6ced7a54..034bce6327d7049f1afe7d9886d2fcc7a9439e5f 100644 --- a/test/Selenium/BaseTestCase.py +++ b/test/Selenium/BaseTestCase.py @@ -43,4 +43,4 @@ class BaseTestCase(unittest.TestCase): self.driver.quit() if __name__ == "__main__": - unittest.main(catchbreak=True) \ No newline at end of file + unittest.main(catchbreak=True, verbosity=2) \ No newline at end of file diff --git a/test/Selenium/Framework_LoadingWebApps.py b/test/Selenium/Framework_LoadingWebApps.py index f3563ba93bc63d7b438f517317e0908430360dab..1bd66589b0cb0abd85a5228c6d23e1fc4adb051c 100644 --- a/test/Selenium/Framework_LoadingWebApps.py +++ b/test/Selenium/Framework_LoadingWebApps.py @@ -90,4 +90,4 @@ class Framework_LoadingWebApps(BaseTestCase): self.checkApplicationSwitch("RequestConsole_MainView", "customAppMainview") if __name__ == "__main__": - unittest.main(catchbreak=True) \ No newline at end of file + unittest.main(catchbreak=True, verbosity=2) \ No newline at end of file diff --git a/test/Selenium/GuiEditor_ConnectionTests.py b/test/Selenium/GuiEditor_ConnectionTests.py index 2a1635e09279b4134849abaff4b71102d6d8b6a9..7f23e42aa6826512288199f94d806a96a441e96c 100644 --- a/test/Selenium/GuiEditor_ConnectionTests.py +++ b/test/Selenium/GuiEditor_ConnectionTests.py @@ -125,4 +125,4 @@ class GuiEditor_ConnectionTests(BaseTestCase): self.assertIsNone(getNodeFromTreeByPath(self.driver, "GuiEditor_ViewEditor_0_Tree", [0, 0]), 'Deleted viewmodel-view connections is still present') if __name__ == "__main__": - unittest.main(catchbreak=True) \ No newline at end of file + unittest.main(catchbreak=True, verbosity=2) \ No newline at end of file diff --git a/test/Selenium/GuiEditor_EditorTests.py b/test/Selenium/GuiEditor_EditorTests.py index 6043bc32676436bf436045a11883c7fda0da52a1..15c86277ab75da839aba97ff7a29d71f2c96147e 100644 --- a/test/Selenium/GuiEditor_EditorTests.py +++ b/test/Selenium/GuiEditor_EditorTests.py @@ -123,4 +123,4 @@ class GuiEditor_EditorTests(BaseTestCase): self.assertFalse(editorTypeExists(self.driver, "GuiEditor_ViewEditor"), "ViewEditor element found after it was deleted") if __name__ == "__main__": - unittest.main(catchbreak=True) \ No newline at end of file + unittest.main(catchbreak=True, verbosity=2) \ No newline at end of file diff --git a/test/Selenium/GuiEditor_SetupHandlingTests.py b/test/Selenium/GuiEditor_SetupHandlingTests.py index 9cfe51f594d9dd6683fc2abf954a82502e741e47..4ad17ffcf29776e2ceb4f45b312567e97d7abd8d 100644 --- a/test/Selenium/GuiEditor_SetupHandlingTests.py +++ b/test/Selenium/GuiEditor_SetupHandlingTests.py @@ -115,4 +115,4 @@ class GuiEditor_SetupHandlingTests(BaseTestCase): self.assertTrue(saveSetupAs(self.driver, "Test2", True, False), "SaveAs overwrite checking is not ok") if __name__ == "__main__": - unittest.main(catchbreak=True) \ No newline at end of file + unittest.main(catchbreak=True, verbosity=2) \ No newline at end of file diff --git a/test/Selenium/RequestConsole_Tests.py b/test/Selenium/RequestConsole_Tests.py index d675f3fedd50dbb993c53ac730527420fec44301..a279e3e92d17b2d8394468cf1718230dd92a2e68 100644 --- a/test/Selenium/RequestConsole_Tests.py +++ b/test/Selenium/RequestConsole_Tests.py @@ -346,4 +346,4 @@ class RequestConsole_SetupHandlingTests(BaseTestCase): self.assertEqual(expectedResponse, textInEditor, "sendData is not returning the expexted result") if __name__ == "__main__": - unittest.main(catchbreak=True) \ No newline at end of file + unittest.main(catchbreak=True, verbosity=2) \ No newline at end of file diff --git a/test/Selenium/runTests.py b/test/Selenium/runTests.py index 04f64c4146492baff1a3c42135fa3fe340616831..6aae24d88c9b5e352cca9037fb880a9dca4ae4a4 100755 --- a/test/Selenium/runTests.py +++ b/test/Selenium/runTests.py @@ -16,4 +16,4 @@ from GuiEditor_ConnectionTests import * from RequestConsole_Tests import * if __name__ == "__main__": - unittest.main(catchbreak=True) \ No newline at end of file + unittest.main(catchbreak=True, verbosity=2) \ No newline at end of file