iOS real device test automation tutorial using Appium and Python

Appium for iOS In this post, we are going to explain the necessary steps required to implement a basic iOS simulator and real device based test automation using Appium and Python. I assume that the reader is familiar with the following… Mac OS basics iOS basics (ex. Xcode, singing certificates, etc) Appium automation framework Python

Python insert list into list at index

Introduction This is a frequently asked question in Python despite its simplicity. In the code snippets below, we will provide straightforward examples to demonstrate how to embed a list within another list at the beginning, middle and end. Let us start with the first case… Python insert list into list at beginning The list object

Python convert unicode to string

Introduction Unicode in Python is not a beginner level topic. To get a better understanding, proper introduction is required. For the sake of this post, we are only going to provide few code snippets to demonstrate the conversion of unicode to string and visa versa. For detailed information about Unicode in Python, it is recommended

Python get current directory

Introduction Today, we are going to talk about directories, files and paths in Python. If you are in rush and only need to know the syntax, here is how to get the current working directory… For more information, continue reading… Python provides dedicated cross platform modules to interface with the operating system and file system.

x for x in Python

Introduction This is going to be a compact post. Did the title catch your attention? Actually, It was intentional as we could have named it list comprehensions in Python. Looping in Python is awesome, if you are curious, you may check this post for more details about loops. In this post, we are only going