From the course: Robot Framework Test Automation: Sauce Labs

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Install Robot Framework libraries

Install Robot Framework libraries

- [Instructor] The setup for Saucelabs integration is really pretty easy. I'm going to make two assumptions, though. I'm going to assume that you've already taken the level one course, or you already know how to use Robot Framework, and you have it installed, along with the Selenium2 library. I won't be covering that in this course. The Saucelabs library we're going to use for integration has two dependencies: the requests library, and the simple JSON library. All we need to do to install those is to use the pip package manager's install command to install requests and simplejson, respectively. So let's go do that. I open a command window, and I type pip install requests and hit Enter. And you can see that I have already got it installed, so it's telling me I need to use dash dash upgrade. But if you don't have it installed yet, you would see different text from this. Now I type in pip install simplejson, and hit Enter again. And again, I already have that installed, but you would see…

Contents