Selenium exceptions | when it occurs & how to handle
Exceptions are basically abnormal/unexpected conditions that may occur while running code/test.These exceptions may disrupt the execution, but we can handle them using java exception handling features. Examples of some exception are, divide any number by zero, file/object not found, accessing array elements beyond it’s size etc… For almost all kind of abnormal situations that may…