Codekru

What is Selenium?

Introduction Imagine a robot sitting in front of your computer. You tell it: The robot performs those actions exactly as instructed, again and again, without becoming tired or making a careless click. Selenium is that robot for web browsers. Selenium is a free, open-source toolset used to automate web browsers. It is most often used […]

What is Selenium? Read More »

How to Run Playwright Java Tests in Parallel?

If you’ve worked with Playwright, you already know it’s one of the most powerful modern automation tools for browser testing. Developed by Microsoft, Playwright supports cross-browser automation for Chromium, Firefox, and WebKit, and it’s gaining huge traction for end-to-end web testing. While Playwright shines with speed, reliability, and cross-browser support, many Java developers quickly notice

How to Run Playwright Java Tests in Parallel? Read More »

How to Run Selenium Tests in Parallel Using TestNG

In today’s fast-paced software development world, speed and efficiency in testing are no longer optional, they are must-haves. Running tests sequentially often becomes a bottleneck when test suites grow larger. Imagine having hundreds (or even thousands) of test cases and waiting hours for execution to complete. This is where parallel test execution in TestNG comes

How to Run Selenium Tests in Parallel Using TestNG Read More »

Handle Alert, Popup and Dialogs Using Playwright Java

When automating web applications with Playwright in Java, one common challenge testers face is dealing with alerts, popups, and dialog boxes. These are browser-level interruptions that require user action, such as clicking OK, choosing Cancel, or entering text before proceeding further. If these are not handled properly, your automation scripts can get stuck and fail.

Handle Alert, Popup and Dialogs Using Playwright Java Read More »

Upload and Download Files Using Playwright Java

When automating web applications with Playwright in Java, file upload and download scenarios are among the most common test cases you will encounter. From attaching a profile picture to downloading a PDF report, understanding how to handle file interactions in Playwright ensures your automation covers real-world workflows. In this article, we’ll cover: Throughout this article,

Upload and Download Files Using Playwright Java Read More »