How Selenium handle exceptions ?I am using Selenium from last few months and I am facing a problem ,as my test case used to run in very uneven manner ,some time it throws the exception and when i run the same test case again it executes in the orderly manner.Is this a error or any exception?
|
You can use the exception handling in whatever language you are using to interface with webdriver.
|
|||
|
|
|
Your Selenium tests should be able to fail, but not because of exceptions that are thrown. If your tests are failing from exceptions then quite likely you have no exception handling. By doing this, you don't have the opportunity to cleanup the The tests should be failing under your terms. This is a generalisation though since it depends on how your tests are written and what the exceptions being thrown are. For example, you should never be getting exceptions like |
|||||||||
|