How To Use Assertions In TestNG With Selenium

Praveen Mishra

Posted On: November 1, 2021

view count191456 Views

Read time14 Min Read

This article is a part of our Content Hub. For more in-depth resources, check out our content hub on WebDriverIO Tutorial.

Testing can be performed in a manual as well as automated manner. Irrespective of the type of testing approach being used, it is necessary to know the point at which the tests have to be halted (or stopped).

When doing Selenium automation testing, we might come across a number of scenarios where a decision needs to be made on the subsequent execution of the tests. This is especially important in cases where the result of the previous test execution has resulted in a failure. If the issue encountered is a minor one, we can still proceed with the execution; otherwise, it is recommended to halt the test execution.

This is where Asserts in Selenium WebDriver comes to the rescue. The test execution halts when the condition (part of the assert) is not met. Thus, when performing Selenium automation testing with TestNG, assertions can be used for taking relevant steps when an issue is encountered.

In this Selenium TestNG tutorial, we look at what are assertions in TestNG, different types of TestNG assertions, and how they can be used in scenarios pertaining to Selenium automation testing.

What are Assertions in TestNG?

Every test automation framework (e.g., TestNG, JUnit, PyTest, etc.) provides a mechanism to raise asserts. Hence, the generic concept of Asserts and Verify in Selenium is synonymous across different automation frameworks.

As far as the TestNG framework is concerned, asserts in TestNG are used for validating the scenario under test. The outcome of the test can be decided based on the assertion status. TestNG assertion is raised if the ‘achieved test result’ is not the same as the ‘expected test result.’

Assert Class in TestNG provides different methods that can be used to raise asserts. For using TestNG assertions, all you need to do is import the org.testng.Assert package.

Let’s take a simple test scenario where the page title of the LambdaTest homepage has to be validated before further tests can be executed.

Here expected result would be ‘Most Powerful Cross Browser Testing Tool Online | LambdaTest.’ The following cases can arise during the process of test execution:

Case 1

  • Fetched Title: Most Powerful Cross Browser Testing Tool Online | LambdaTest
  • Expected Title: Most Powerful Cross Browser Testing Tool Online | LambdaTest
  • Test case result: Passed, as fetched title matches the expected title

Case 2

  • Fetched Title: Most Powerful Cross Browser Testing Tool Online | LambdaTest
  • Expected Title: Most Powerful Cross Browser Testing Tool Online
  • Test case result: Failed, as fetched title does not match with the expected title

The above example that demonstrated TestNG assertions gives an overall idea about the what & how of assertions. Let’s look at the syntax and other internals of assertions in TestNG.

Syntax of TestNG assertions

The Assert package in TestNG provides methods(or options) to raise assertions. Shown below is the generic syntax of TestNG assertions:

  • Assert is the Class provided by the TestNG framework
  • methodName is the name of the method that can be used for implementing TestNG assertions
  • actual is the first parameter that describes the value that the user gets during the execution of the test script
  • expected is the second parameter that describes what the user should get to validate the functionality of the test case

Watch this video to learn how to set up and use TestNG with Selenium to automate your testing process. We will also introduce the TestNG Priority method, which allows you to write easy-to-read and maintainable tests.

What are Assertion errors?

An Assertion Error, which is a subclass of the Error class, is thrown whenever an issue is encountered during the process of Selenium automation testing.

Read – Asserts in NUnit using Selenium

Let’s take a look at a sample implementation on TestNG assertions where the Selenium test raises an Assertion Error due to an error in the code.

The example shown below is run on the LambdaTest cloud Selenium Grid. A cloud-based Selenium Grid helps improve browser and test coverage by helping run tests on a range of browser and OS combinations. Here’s how you can perform cross browser testing using TestNG.

In addition, the overall process of Selenium Java automation testing using TestNG can be expedited by leveraging parallel testing in TestNG with Selenium.

Here is a brief video to help you with Parallel Testing in TestNG.

Since the tests are running on a cloud Selenium Grid, an instance of Remote WebDriver in Selenium is created before implementing the actual test logic. Then, relevant Selenium methods are used to access and perform operations on the WebElements in the DOM.

The respective methods are placed under relevant TestNG annotations, thereby improving the readability of the tests. However, as seen in the implementation, the fetched title does not match with the expected title, which eventually results in an assertion error.

The rest of the implementation is pretty straightforward, hence we are deep diving into those aspects of the code 🙂

Invoke the following command on the terminal to kick-start the test execution:

The test resulted in a failure as a TestNG assertion was raised since the read title did not match with the expected title.

LambdaTest Automation Dashboard

Navigate to the Exception tab in LambdaTest Automation Dashboard to check the details of the TestNG Assertion error.

TestNG Assertion

In the above images, we can clearly see that the expected title and actual title did not match; hence AssertionError is displayed. The noticeable point here is we do not see any clear failure message in all the above outputs. Let’s resolve this problem in the next section.

With TestNG certification, you can challenge your skills in performing automated testing with TestNG and take your career to the next level.

Here’s a short glimpse of the TestNG certification from LambdaTest:

Different Methods in TestNG assertions

TestNG provides different methods to validate the test result during script execution. In this section, we will see the most commonly used assertion methods available for TestNG assertions

Methods

Description

assertEquals(String actual, String expected, String message);

Asserts that two strings are equal. If not, then AssertionError is thrown.

Parameters

actual: actual value

expected: expected value

message: message that we want to display in case of failure

assertEquals(boolean actual, boolean  expected, String message);

Asserts that two boolean values are equal. If not, then AssertionError is thrown.

Parameters

actual: actual value

expected: expected value

message: message that we want to display in case of failure

assertEquals(Collection <?> actual, Collection <?>  expected, String message);

Asserts that two Collection type objects hold the same elements and in the same order. If not, an AssertionError is thrown.

Parameters

actual: actual value

expected: expected value

message: message that we want to display in case of a failure

assertEqualsNoOrder(Object[] actual, Object[]  expected, String message);

Asserts that two arrays contain the same elements in no particular order. If not, an AssertionError is thrown.

Parameters

actual: actual value

expected: expected value

message: message that we want to display in case there is a failure

assertTrue(boolean condition, String message);

Asserts that condition is true. If not, then AssertionError is thrown.

Parameters:

condition: evaluate condition

message: Assertion error message in case of a failure.

assertFalse(boolean condition, String message);

Asserts that condition is false. If not, then AssertionError is thrown.

Parameters

condition: evaluate the condition

message: Assertion error message in case of a failure

assertNotNull(Object object, String message);

Asserts that an object is not null. If not, then AssertionError is thrown.

Parameters

object: assertion object

message: message that we want to display in case of a failure

assertNull(Object object, String message);

Asserts that an object is null. If not, then AssertionError is thrown.

Parameters

object: assertion object

message: message that we want to display in case of a failure

assertNotSame(Object actual, Object expected, String message);

Asserts that two objects do not refer to the same objects. If not, an AssertionError is thrown.

Parameters

actual: actual value

expected: expected value

message: message that we want to display in case of a failure

assertSame(Object actual, Object expected, String message);

Asserts that two objects refer to the same objects. If not, an AssertionError is thrown.

Parameters

actual: actual value

expected: expected value

message: message that we want to display in case of a failure

The “message” parameter is optional in all the above methods.

Watch this video to learn how TestNG has become one of the most robust test automation frameworks and all you need to know to get started with TestNG in Selenium.

Assertion Messages in TestNG Tests

TestNG provides the flexibility to add a custom message as a parameter inside the test method. The message helps in better understanding and tracking the reason behind the test failure.

We have already discussed the major parameters in the earlier section. The newest parameter, ‘message’ is used for defining the custom message that is displayed in case the test results in a failure.

We now modify the already demonstrated example where a custom ‘message’ is displayed when the TestNG assertion is raised.

As seen in the execution snapshot, the custom message is printed when the corresponding TestNG assert is raised.

As seen in the ‘Exception’ Tab of the Automation dashboard, the custom message ‘Title not matched’ is printed instead of the rudimentary message that we witnessed in the earlier screenshot.

Different types of TestNG Assertions

Soft Assertions and Hard Assertions are the two main types of Assertions in TestNG. The different types of asserts are defined based on the necessity that the user wants to halt the execution or continue the execution in case there is a failure.

Hard Assertions in TestNG

Hard TestNG Assertions should be used when failure in test execution should halt the overall execution of the test suite. By default, TestNG assertions are ‘hard’ in nature. Hence, you need to import the org.testng.asserts.SoftAssert package if you want to raise Soft TestNG Assertions in your test.

Let’s understand the above concept with the help of an example where the login has to be done before performing any actions on the site. Therefore, there is no point in validating the Home page until a successful login is done. In this case, we can use hard assertions on the Login page so that we would be able to stop our test execution immediately if the login is unsuccessful.

As seen in the screenshot from the automation dashboard, it is evident that the test has failed, and the custom message is printed as a part of the exception message.

Soft Assertions in TestNG

Soft TestNG Assertions are preferred in scenarios where a failure in the test should not result in halting the execution of the other tests in the test suite. Use soft assertions when the failure is not a major one, thereby having minimal (to no) impact on the subsequent tests.

Soft Assert not only asserts a given assertion statement but also provides the flexibility to the user for continuing the execution of the test script even after assertion failure. For implementation, we use the SoftAssert class available in TestNG, and this SoftAssert class extends the Assertion class, which has almost all the assertion methods.

In the case of Soft Assert, TestNG always executes only those test steps that are in between assert statement and assertAll statement. The steps present after the assertAll method will not be executed.

The execution output shows that a soft assert was raised, and the statement following the assert was also printed on the output console.

Watch this video to learn what are TestNG assertions, the different types of TestNG assertions, and how you can use them while performing Selenium automation testing with TestNG.

Custom Soft Assertions in TestNG

In the previous sections, we demonstrated the implementation of different TestNG asserts, but there might be a need to write our assertions (called Custom Assertions).

We will first create a CustomAssertion class, which extends the SoftAssert class so that we can use all assertion methods in TestNG. For demonstration purposes, we will take the example of the LambdaTest website in which we will validate whether the “Free start testing” button is a button web element or not.

Now, we will create the main class where we test the recently created custom assertion. Here, we will inspect elements that we want to test and create the object of the above-created custom assertion class. Finally, with the help of the created object, we will call the method that we created in the custom assertion.

If we run the main class, then we can see our assertion is passed, and the success message is displayed on the console.

If we want to fail the above TestNG assertion, add the following change in the existing implementation:

Now if your test fail you can learn how to capture screenshot of failed tests easily through this video.

Conclusion

In this TestNG tutorial with a focus on TestNG assert, we looked at different asserts and constraints helpful in Selenium automation testing. The reason for using assert in test code is to pause the execution as soon as assert is encountered.

Selenium testing is an essential element in ensuring the effectiveness of test automation. With the combination of cloud-based Selenium testing tools like LambdaTest, development teams can verify product functionalities across several browsers & operating system combinations. However, the core business logic remains intact, with minimal changes required to port the TestNG test code to the remote Selenium Grid.

Let us know the TestNG asserts you have been using in the comments section to learn from each other’s experience. If you are preparing for an interview you can learn more through TestNG interview questions.

Happy Testing

Frequently Asked Questions

What are assertions in TestNG?

Assertions in TestNG are a way to verify that the expected result matches the actual result. If we could decide whether a test passed or failed by using small methods within each test, we can determine whether our tests as a whole succeeded or failed.

What are the assertions in selenium?

An Assert in Selenium is a validation statement that ensures a particular condition holds true during an automated test run. It checks if the application is behaving as expected or not. An assertion can be used with any framework or tool.

What is soft assertions?

Soft Assertions are best for handling failures. They do not throw an exception when an assert statement fails, so your code will continue to run after a failed assertion. You can then handle the error in a catch block.

Author Profile Author Profile Author Profile

Author’s Profile

Praveen Mishra

Praveen is a Computer Science Engineer by degree, and a Digital Marketer by heart who works at LambdaTest. A social media maven, who is eager to learn & share about everything new & trendy in the tech domain.

Blogs: 28



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free