I am doing automation testing and while writing the test cases I don't want to go looking at the logs after the testing is done, because I sit in front of my PC when the automation tests are run.
Is there any way that I can make pop up dialogs?
Like if a button is clicked, the pop up dialog should appear saying the button is clicked, but the program execution shouldn't be stopped. I tried with messagebox.show
but the problem is it stops execution of the program.
Is there anyway to do this without stopping the execution of the program?