Category: Python
25
Nov
Python API testing beyond the GET request.
by Slav Kurochkin
No Comments
Recently I wrote a blog post on API testing in Python, but I only talked about GET requests there. In this tutorial we are going...
11
Nov
Django Database Model Unit Testing
by Slav Kurochkin
No Comments
Working with databases always have some challenges. The main problem is if we run tests against real database it can get flooded with fake data...
11
Nov
Health Check of a Public Website using Python
by Slav Kurochkin
No Comments
So you running public website and you have something like Jenkins server where you can execute small programs and monitor state of your website. There...
24
Sep
API testing with Python
by Slav Kurochkin
No Comments
There are many ways of doing API testing, the most popular tools is Postman (JavaScript) and RestAssured (Java), in this post we going to use...
04
Sep
Automating Checkers with Selenium in Python
by Slav Kurochkin
No Comments
I’m originally from Russia and since I was a kid I been playing Chess and Checkers. I have heard about competitions between humans and computers,...
30
Jun
Using Loading Animation in your Test Automation
by Slav Kurochkin
No Comments
In test automation, there is quite often the situation when we need to wait for the page to load before interacting with UI elements on...
18
Mar
Flask quick reference
by Slav Kurochkin
No Comments
This post will be updating constantly to keep different flask commands cheat sheet. Set the environment variable FLASK_APP to be application.py Change Flask running port
24
Feb
Get checkbox value in Flask and Jinja2
by Slav Kurochkin
No Comments
Here is how to get checkbox value from jinja2 template in a flask, first let’s create our jinja2 file: Then lets retrieve value from the...
23
Feb
How to use sessions in Flask
by Slav Kurochkin
No Comments
One of the things you need to do as a developer of the application is track who is logged in to your application so you...
22
Feb
Ignore CSV header in Python
by Slav Kurochkin
No Comments
Sometimes you would get a data sheet as CSV file which needs to import in SQL, the problem is CSV files don’t really care what...