Архив за месяц: Май 2023

Exceptions in Selenium

Exceptions in Selenium In this post, we will study the most commonly encountered exceptions in Selenium WebDriver and the root cause of these exceptions.

Soft Assertion in TestNG

Soft Assertion in TestNG Assertions in our test suites are required to validate the actual result with the expected result. The Assert class provided by TestNG provides a form of hard assertion wherein as soon as an assertion fails the execution of that particular test method stops and the test method is marked as a… Читать далее »

Difference Between System and Integration Testing

Difference Between System and Integration Testing System testing is a level of testing where the application as a whole is tested for its compliance to functional and non-functional requirements. Whereas, in integration testing, we test the interfacing between the modules which are interconnected with each other. Let’s now see the difference between the two.