PinnedRise of Aqua - A Powerful IDE for Test Automation by JetBrainsOne of the most commonly asked tools from test automation engineers is a dedicated IDE for QA. We started using dev tools as part of the test automation in a different form of IDE, based on the programming language. When we create a new project on the Aqua IDE, it…Ide5 min readIde5 min read
May 15Handling Robot Framework Using Command LinesActually, the robot framework doesn't have any crazy IDE with all the relative support on it. The ride is an official IDE, which most people use for robot framework but in reality, it is like old school. …Robot Framework3 min readRobot Framework3 min read
Apr 30Powerful Enums for clean codeCypress is a popular end-to-end testing framework for web applications. It doesn’t have built-in enums specific to the tool itself, but you can create custom enums in JavaScript to help organize and manage your test automation code. …JavaScript2 min readJavaScript2 min read
Mar 27Usage of Data-Driven and Faker Library in realityData Driven: Data-driven testing is a technique where test cases are defined using data from external sources, such as CSV files, spreadsheets, or databases. This approach is useful when you need to test a large number of scenarios or input combinations, and it allows you to easily update your test…JavaScript3 min readJavaScript3 min read
Jan 31Running Selenide-Appium (Android) test on BrowserStackI haven't worked with Selenide-Appium before. I was impressed by the way how it is customized to run in a simple way with minimum configuration. The main agenda for this post is to quickly start running a selenide-appium test in the browser stack. It is more over a similar approach…Browserstack3 min readBrowserstack3 min read
Jan 14Running test automation with Selenide on GitLabSelenide is a robust test automation framework powered by Selenium. We can start building the test in minutes with a very minimal configuration. Here is the quick start guide. WebDriver brings the following advantages Concise fluent API for tests Stable tests Powerful selectors Simple configuration I have created a project…Selenide4 min readSelenide4 min read
Jan 8Android (Java - Gradle) — Appium using Page Object ModelIn reality, we are following approaches that are widely used in the market. Page object model helps you to structure your test automation code in the way of reusing it in a better way. …Appium4 min readAppium4 min read
Dec 5, 2022Integrating Cypress with the Circleci for Web Automation TestCircleci is one of the CI that can help in building the test on it. Circleci has very good documentation on understanding and implementing the test with great documentation. We can integrate the test easily with the below repositories. The configurations can be added by the path .circleci/config.yml …Cypress5 min readCypress5 min read
Nov 9, 2022Running a Robot Framework Test on GitLab and Deploying the ReportOne of the coolest features of the robot framework is codeless automation. But we cannot say that it's 100% of codeless automation because when you have a shortage of keywords, you need to write it in python to fill the gap. The robot framework code might be simple to execute…Robot Framework4 min readRobot Framework4 min read
Oct 31, 2022Data-driven Using Cypress + BDDData-driven is one of the core concepts of test automation which help us in structuring the test data based on our requirements. When we have a huge amount of test data, it is difficult to manage and data-driven help us to structure it. In cypress, we can use same set…Cypress3 min readCypress3 min read