pallavi chauhaninnovateitworld.hashnode.dev·Dec 31, 2024Choosing the Right Automation Framework for Your Testing NeedsAutomation testing plays a pivotal role in modern software development and quality assurance. Choosing the right automation framework can significantly enhance testing efficiency, reduce costs, and deliver high-quality results. However, with the plet...automation
Hari Nairend.hashnode.dev·Dec 23, 2024How to Dockerize Your Test Automation Suite for Enhanced EfficiencyIntroduction In the previous article, we updated few files for packaging the project artefacts to JAR files. In this article, we will add the ability to run the tests in a containerised environment using Docker. While there are several approaches to ...58 readsautomation testing
Steve Worthamstevewortham.hashnode.dev·Nov 27, 2024A Guide to Codeless Automation on iPhone DevicesIt all depends on the quality and responsiveness of your website. As per Forbes, 38% of people engage with a website only if it has attractive content and layout. Hence, organizations focus a lot on continuous application performance, especially when...automation
Hari Nairend.hashnode.dev·Aug 10, 2024Packaging The Automation FrameworkIntroduction 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...59 readsautomation testing
Kunaal Thanikkunaal.hashnode.dev·Jul 29, 2024Strings Manipulation -ch-02Concatenation : 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 = "...Python RecallPython
Kunaal Thanikkunaal.hashnode.dev·Jul 18, 2024CH01- InitializationFirst 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...29 readsPython Playwright UI Automationautomation
Hari Nairend.hashnode.dev·Apr 13, 2024Selenium WebDriver Automation Framework in JavaGithub 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...122 readsautomation testing
Debasmita Adhikaridebasmita-a.hashnode.dev·Apr 4, 2024Automation Testing Framework using Selenium WebDriver and Java : Day 2In 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...Page Object Model FrameworkAutomation Test Framework
Debasmita Adhikaridebasmita-a.hashnode.dev·Mar 31, 2024Automation Testing Framework using Selenium WebDriver and Java : Day 1End-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...Page Object Model Frameworkautomation testing
Hari Nairend.hashnode.dev·Mar 2, 2024Automation Framework - Part 3Introduction 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...90 readsautomation-with-seleniumAutomation Test Framework