Category Archives: Automation
ExpectedConditions In Selenium: Types And Examples
ExpectedConditions in Selenium allow you to wait for specific conditions to be met before proceeding with interactions with the WebElements. This is common when the WebElement is not yet present or is visible but not clickable or text attributes are not being updated in time.
August 13, 2024
375109 Views
21 Min Read
Playwright TestingAutomationTutorial
How to Use Playwright Locators: A Detailed Guide
This article is a part of our Learning Hub. For more in-depth resources, check out our hub on Playwright Tutorial. Locators are one of the most effective ways to locate elements for web testing. They provide automatic waiting and retry features, making it simple for developers and testers to find and interact with specific elements … Continue reading How to Use Playwright Locators: A Detailed Guide
August 1, 2024
444816 Views
25 Min Read
Selenium JavaAutomationTutorial
How to Handle StaleElementReferenceException in Selenium
When performing Selenium automation testing, if you try to interact with a WebElement that’s no longer in the Document Object Model (DOM), Selenium will throw a StaleElementReferenceException.
July 31, 2024
537612 Views
12 Min Read
AutomationSelenium JavaTutorial
How To Setup JUnit Environment For Your First Test
This article is a part of our Learning Hub. For more in-depth resources, check out our hub on JUnit Tutorial. JUnit is a widely used unit testing framework. When combined with Selenium, it enhances the web application testing process. JUnit utilizes annotations to identify test methods and supports various assertions, test suites, and test maintenance.
July 31, 2024
368316 Views
18 Min Read
Generative AI in Testing: Benefits and Tools
Generative AI is a type of artificial intelligence that creates new outputs by learning patterns from existing data. As part of modern quality assurance practices, Generative AI in testing enables automation of tasks like test authoring, synthetic test data generation, test suite optimization, and more. TABLE OF CONTENTS What Is Generative AI in Testing? How … Continue reading Generative AI in Testing: Benefits and Tools
July 21, 2024
149037 Views
15 Min Read
Continuous Delivery vs Continuous Deployment: When To Use Which
Continuous delivery and continuous deployment are fundamental concepts in DevOps, both aiming to achieve faster and more reliable software delivery.
July 19, 2024
227640 Views
16 Min Read
What Is the Single Responsibility Principle (SRP)
Single Responsibility Principle (SRP) is one of the SOLID design principles you must follow while designing, developing, and maintaining an automation framework.
July 18, 2024
210996 Views
17 Min Read
AutomationSelenium TutorialTutorial
How to Use Selenium Click Commands Using Python
Automating mouse clicks is essential for browser automation, allowing testers and developers to simulate real user interactions on web pages.
July 18, 2024
557448 Views
20 Min Read
Selenium PythonAutomationTutorial
How to Automate Filling In Web Forms With Python
Web forms are key components for data entry and interaction across various business processes. So, it’s important to ensure the functionality of these forms across the website. However, testing forms manually is both time-consuming and prone to error.
July 11, 2024
809997 Views
11 Min Read
TutorialAutomationSelenium Tutorial
How To Take Full Page Screenshots In Selenium WebDriver
Taking screenshots is one of the most common actions for any web page tester. Screenshots or videos are essential when reporting bugs, as they provide visual evidence of issues.
July 9, 2024
407795 Views
19 Min Read