From the course: Robot Framework Test Automation: Level 1 (Selenium)

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Install Robot Framework and SeleniumLibrary

Install Robot Framework and SeleniumLibrary - Selenium Tutorial

From the course: Robot Framework Test Automation: Level 1 (Selenium)

Install Robot Framework and SeleniumLibrary

Okay. Now that we've installed Python and pip, we can use pip to install Robot Framework itself, plus any other Robot Framework libraries we'd like to use. This is really quick and easy, and to do it, we're just going to open a command window and type in "pip install robotframework." And after that we'll type "pip install robotframework -seleniumlibrary" to install the Robot Framework Selenium library. Now I have two important notes for you. The first one is, that we could just make this one call right here because when we pip install the robotframework -seleniumlibrary, it has a dependency on both Robot Framework and also the base Selenium library. So just by running this one command, it would also install Robot Framework as well. I'm going to do it in two separate commands just to build up some muscle memory and to show you how you can install Robot Framework by itself and then layer on any additional libraries you want. So I'm going to click on my windows "Start" menu, type in…

Contents