Mobile Automation Testing with Robot Framework and Appium for iOS

Mobile Automation Testing on iOS In this blogpost, we will discuss Mobile Automation testing with Robot Framework and Appium Library using PyCharm IDE. I have put this article as simple as possible into 3 points as mentioned below. Let's start! App under test : com.apple.reminders Set Up Open Appium GUI Server and Appium Inspector Test Automation Framework 1. Set Up : The setup is a bit tedious but it's worthwhile to see running the automation tests. We need to install the following step by step. Install Java : Download Java from Oracle from the link below. Install from this link Java8-Mac-Download Set up your bash profile or .zshrc file : Once you've installed Java now set your environment variables Run this command on Terminal : nano ~/.zshrc (OR) open ~/.zshrc and Add the below to your .zshrc file : export JAVA_HOME=/usr/libexec/java_home export PATH=${JAVA_HOME}/bin:$...