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.

Navigating and searching your script files

Navigating and searching your script files - Selenium Tutorial

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

Navigating and searching your script files

In this video, I'm going to take you through a few of the features of the PyCharm IDE that will allow you to navigate through your code to make it easier to get your work done. In doing so, I'm going to show you a few things you understand, but rest assured I'm going to cover all these topics in future videos. So I've got a typical Robot Framework project open here in my PyCharm IDE. And as you'll learn in future videos, we have script files in the tests directory, and we have resource files in the resources directory. And we're also going to have page objects inside this page objects directory. All of them are plain text files ending with a .robot extension, and it's all very keyword based. Given that all these files are going to contain a bunch of keywords, I want to show you how to navigate through keywords because you're going to see me do that in future videos. So in my script file here, I'm referencing keywords that have been defined in these external resource files which live…

Contents