- Robot Framework Test Automation
- Sumit Bisht
- 202字
- 2021-07-23 15:21:05
A small exercise
To demonstrate the Robot Framework, we will create a simple dummy application as follows:.
- Create a folder named
simpleapp
, this will serve as the application root folder. - Inside this, create a folder named
testsuites
, this will contain all the test configuration files. - Within the
testsuites
folder create a file,Test_Case_1.txt
, with the following contents:***Test Cases*** First Test Action log this is a basic test
Note
Note that there are two spaces before and after the log keyword.
- Now run the project by calling Pybot script and passing the
testsuites
folder as an argument. You should get something similar to the following screenshot:
This confirms that the project has run successfully. You can view the results and log from generated HTML pages and perform future calculations over the data by using the XML file.
As we used a simple log statement, you get a logged message in the out log, as shown in the following screenshot:

The generated XML is also easy-to-read (as shown in the following screenshot), which can then be used by any other external tool as an input parameter—thereby reducing the human intervention between different stages of testing if this process is also automated.

推薦閱讀
- C語言程序設(shè)計(第2 版)
- 零起步玩轉(zhuǎn)掌控板與Mind+
- 零基礎(chǔ)入門學習Python
- Java編程技術(shù)與項目實戰(zhàn)(第2版)
- RocketMQ實戰(zhàn)與原理解析
- Sails.js Essentials
- AI自動化測試:技術(shù)原理、平臺搭建與工程實踐
- Python GUI Programming Cookbook(Second Edition)
- Drupal 8 Development Cookbook(Second Edition)
- Go Systems Programming
- Three.js Essentials
- Python Business Intelligence Cookbook
- R High Performance Programming
- 換個姿勢學C語言
- Spring Boot實戰(zhàn):從0開始動手搭建企業(yè)級項目