Introduction In the previous article, we created a modular automation testing framework using Selenium WebDriver, TestNG, Java, and Maven. In this article, we will add support for packaging the entire project to a JAR file as a prerequisite for runni...
Concatenation : concatenate using '+' operator prefix = "al" suffix = "pha" print(prefix + suffix) # output : alpha f-String: helpful to print message with variable values. syntax: f" your message {var_a} and print {var_b} " prefix = "al" suffix = "...
First of all i created a repo on GitHub https://github.com/kunaal-ai/para-bank-ui-automation then cloned on local using cmd git clone https://github.com/kunaal-ai/para-bank-ui-automation and installed pytest plugin with following command pip install...
Github Repository Java Selenium Automation Framework The GitHub repository linked above serves as the foundation for our Selenium automation framework project. Inside, you'll find a comprehensive Java-based framework designed to streamline web testin...
In the last article, we created a Maven project, added required dependencies to the POM.xml file and then added packages and folders to our project structure. 1. Initializing the properties file : The config.properties file we added under src/test/re...
End-to-end testing framework topics to be covered : Page Object Model pattern Tech stack : Java, Selenium, TestNG, Maven CI CD : GIT, Jenkins Cloud integration : AWS In this series, we will create a very simple automation testing framework, mai...
Introduction In the previous article, we explored running the Selenium-standalone server as a detached process using PM2, a CLI-based manager for daemonizing application processes. Additionally, we created a configuration file to oversee various comm...
#C #Unity #testframework #Makefile #automation #conventionalcommits Let's work through Sorting algorithms & Big O. It is a project in Holberton School Australia's C curriculum. ℹ If you are thinking of studying at Holberton School Australia, this a...
What is SSM? AWS Systems Manager (SSM) is an agent-based service for managing servers on any infrastructure: AWS, on-premise and other clouds. Amazon used to provide loosely wrapped services for managing EC2 instances such as EC2 Run Command for exec...
Introduction Automated testing is the cornerstone of modern software development and improves quality and efficiency. In this article, we will explore its importance and focus on how it speeds up validation, streamlines development, and protects agai...