Vasav

1 minute read

Prerequisites

  • Python must be installed in the machine
  • If python is not installed then follow the instruction in this video
  • Make sure to add python in environment variables

Installing robot framework library using PIP

  • robot framework has their python library which can be installed using pip install robotframework command. Reference for the command can be found here.
  • There are some other libraries that you may need to install depending on the use case. At this stage, I am going to include demo for web automation in future posts. For that an additional library is required which is powered by selenium.
  • Install that library using pip install robotframework-seleniumlibrary.
  • This command will install all the required libraries to support robot framework.

Editor

  • A text editor is required to write python code. There are few freely available text editors available in the market and there are tons of videos available to setup these editors. Here is a list of popular text editor which can be used to write and run automagica code.
  1. Notepad++
  2. Pycharm Community Edition (Install plugin named - intellibot-seleniumlibrary-patched)
  3. Visual Studio Code
  4. nteract

Next Steps

Once robot framework is installed, you are all set to automate your redundant office tasks. I will cover the basic demo in the upcoming posts.