There are different phases in every student’s life. After graduation, the big changes gonna happen. Yes, It’s college to work life. This transition is challenging for many students as it can be more stressful and it is like stepping into a whole new world. Initially, it is quite uneasy to adopt a corporate routine because the corporate world is different from […]
Transition from College to Work
Getting started with Database Schema Migration (Flask-Migrate)
Why this post? This post helps you to quickly setup and get started with Database schema Migration using Flask-Migrate. For example if you already had created a database that contains some tables and now if you add a new column to one of the table and then if you want to revert it to the previous state, it’s difficult to […]
How screenshots are captured for a test run in Qxf2’s Page Object Model framework
This post will help you in understanding how the Qxf2’s page object model captures the screenshots when a test is run. Why this post: Screenshots are desirable for bug analysis. Suppose you write a test script to automate a web page, you would not keep monitoring to see if it’s working right every time. You would let the script do its job and […]
Getting started with Unit Testing using mock in Python
Unit testing is considered as a vital phase in software testing. Anyone who has been involved in the software development life cycle will have encountered some form of testing. Although the aim of testing is to find bugs, it cannot guarantee the absence of other faults, no matter how creative the test cases are designed. Unit testing enables a more […]
A QA interview exercise – read code in different languages
In this post, we are sharing an exercise we use to interview QA engineers. We have a slideshow that shows code in about 13 different languages. The candidate has to guess what each code snippet does. This exercise has proven to be useful in differentiating between QA who are fundamentally scared of code from the ones who are comfortable with […]
Highlight feature of Qxf2’s Page Object Model framework
Are you lost with locating the web elements while debugging your test script? The highlight feature of Qxf2’s Page Object Model framework helps you to debug locators by giving a visual clue. This blog post will guide you with the steps involved in using the highlight feature of Qxf2’s Page Object Model framework in your test script. The highlight feature […]
State of Testing Survey: 2020
Howdy! Testers, we are excited to inform you that the State of Testing Survey 2020 is live now. Please do take part in the survey and help out the testing world to gain a better understanding of the state of testing. Q.Why take this survey? A.Your opinion matters!!!. Yes, your precious feedback contributes to the knowledge base, which then becomes the State of Testing report (2020). This is the biggest survey in […]
Converting test screenshots into Gif
When we run the tests using qxf2 page object model framework we capture the screenshots of the test run at certain steps using decorators Screenshots utility. Often, it is time-consuming to view each of these screenshots. We thought of adding a utility that can convert all this screenshot into a single Gif that is more convenient to use and debug any […]
How to run Qxf2 framework tests in parallel using pytest-xdist plugin
In this blog, we will show you how easily Qxf2’s page object model framework can be run in parallel using pytest-xdist plugin. As pre-requisite, Fork, and clone our framework. Follow the Readme.md and set up the framework. To run GUI tests in the framework parallel use the below command. As we have only 3 GUI tests I have passed 3 […]
Email your pytest results as html report
We have noticed that sometimes we want to see test results in our email inbox even though good reporting tools are being used. We at Qxf2 Services, use pytest as our test runner. A simple utility email_pytest_reports.py has been added to our framework which can send pytest results as simple HTML reports. This blog is on how we built an […]