Selenium with Python-unittest - Test returns Process finished with exit code 0 and no action is performed Selenium with Python-unittest - Test returns Process finished with exit code 0 and no action is performed selenium selenium

Selenium with Python-unittest - Test returns Process finished with exit code 0 and no action is performed


Are you calling your unittest with:

if __name__ == '__main__':    unittest.main()

If you do not, then you are just defining the test, not actually executing anything.