Could someone helping me to understand why the following code is executed, but no action is performed?
Returned code is 0 but browser is not opened or no action is perfo
Are you calling your unittest with:
unittest
if __name__ == '__main__': unittest.main()
If you do not, then you are just defining the test, not actually executing anything.