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

Unlock this course with a free trial

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

Write test steps: Part 2

Write test steps: Part 2

All right. All right. So we're making progress on our very first script. We've declared our library. We've got a test case name, and we have some documentation and tags for that test case. And again, these tags are going to allow us to selectively run this test case or a subset of test cases like smoke or contacts and so on. You can see I've demonstrated set Selenium speed and set Selenium timeout, and be aware that you can use those at the test case level or globally at the library level. I've demonstrated that we can log something into our results file. We've opened the browser, and I've done some stuff for my recording purposes where I set the browser Window, position, and size. We did a sleep so you can see the Window and then we close the browser. So I'll take you back to the manual test case which has all the steps we need to accomplish. So far we've only opened a web browser and navigated to the homepage address and close the browser. So we've got to do the rest of these steps,…

Contents