As part of the pairing project activity at Qxf2 – pick a project that can produce a meaningful output in 5 hours and work on it collaborating with your team mates, I picked this project to identify the tech keywords from a text using NLTK module. This post covers the steps I followed to find the tech related words in […]
Identify tech words from a text
Using cProfile to get some useful statistics for Python based tests
In general, when we have some performance problem with our code, profilers can be used to help identify where the problem actually lies. It can be used to check how long the functions defined in your code took to execute, how many times a particular function is being called etc. We were able to use cProfile to find out some […]
Anonymize data using Python Faker
We have an application which holds some sensitive survey information. Now since we couldn’t share the data with everyone we wanted a good way to Anonymize the data so that we can handover the development to anyone. We found Faker as a good library that generates fake data. Why this post As a tester, we may need to work with […]
Problem Steps Recorder
Recently when I was searching for the screen capture tool to report my issues to QA team, I discovered that windows already have an inbuilt hidden tool in Windows 7, 8 and 10 versions called Problem Steps Recorder(PSR). Do you know about Problem Steps Recorder already? If you feel no, scroll down to learn more. Problem Steps Recorder is a […]
Learning Python when you already know Java
This blog is an outcome of a few adjustments that I made while moving from Java to Python when automating my tests. This will help you with basic pointers about how Python syntax is different from Java. Why this post? As an experienced Java automation engineer, when I started my journey into Automation using Python, I had this very basic […]