Skip to main content

Daniel Vivek Raman

Blogs from this Author

Configure Selenium Tests in Multiple Browsers

This post will cover how to configure tests to run in multiple browsers using JUnit. Consider any testing framework: it should have a Driver script and a Driving script. The Driver script is the starting point of a test. The flow of a test execution usually begins from the Driver script. We can configure the Driver […]

Hard and Soft Assertions in Selenium

This post covers how to handle Assertion Failure in Selenium. Test scripts can be very robust and large. Assertions are the best method to perform any kind of validations in the tests. When an assertion fails the test script stops execution unless handled in some form. There are two types of assertions: Hard Assertions Soft Assertions. […]