Tools in test automation
Last modified on Mon 02 Feb 2026

Web frameworks

Playwright is a modern web automation framework that is becoming increasingly popular. It supports multiple browsers (Chromium, Firefox, WebKit), runs in headed or headless mode, and lets you write tests in JavaScript/TypeScript, Python, C#, or Java.

Benefits of Playwright

Other options

Selenium remains a widely used framework built on WebDriver. It has a long-standing ecosystem, broad language support, and a large community. Selenium follows the W3C WebDriver standard, so it integrates well with many CI/CD and cloud testing providers. It’s a solid choice for existing projects or when you need WebDriver compatibility.

Other tools in this space include:

Mobile frameworks - Appium

Appium extends Selenium’s WebDriver model to mobile: it automates hybrid and native apps on Android and iOS.

Appium is:

Philosophy

How does it do it?

Advantages

Testing API

A great tool to start with API testing is Postman. You can easily pick up the basics and start testing the API right away. Postman can be used in manual testing, but also offers a few options for automation.

For more info read the Using Postman article.

What to test

When it comes to API there are quite a few details that need checking. Unfortunately, oftentimes only the status code is being checked. However, especially nowadays with apps doing wonders, that won't cut it.

A few basic things to check:

Read the REST API Testing Strategy article for more ideas on what to check.