Journal of Computer Engineering & Information TechnologyISSN : 2324-9307

All submissions of the EM system will be redirected to Online Manuscript Submission System. Authors are requested to submit articles directly to Online Manuscript Submission System of respective journal.

Research Article, Jceit Vol: 9 Issue: 3

An Empirical Study on Robot Test Automation Framework

Vijayashree Shetty*, Swetha S and Bindu Ashwini C

Department of Information Science and Engineering, R V College of Engineering, Bengaluru

*Corresponding Author: Vijayashree Shetty
Department of Information Science and Engineering, R V College of Engineering, Bengaluru
E-mail: vijayashrees.is16@rvce.edu.in

Received: May 18, 2020 Accepted: July 24, 2020 Published: July 31, 2020

Citation: Shetty V, Swetha S, Bindu Ashwini C (2020) An Empirical Study on Robot Test Automation Framework. J Comput Eng Inf Technol 9:3. doi: 10.37532/jceit.2020.9(3).227

Abstract

Recently with the usage of robot framework there has been a convincing improvement in IT automation process, improving both quality and efficiency of products with the decreased association of Tester. Robot Framework is open and extensible. A groundbreaking and adaptable automation solution can be made by integrating Robot Framework with any other tool. It ensures easy extensibility and reusability through its ability to form high-level keywords from existing keywords. Further its abilities can be stretched out by libraries implemented with Python or Java. The framework incorporates a rich ecosystem around it, consisting of libraries and tools that are developed as separate projects, a command line interface and XML (Extensible Markup Language) output files simplify the integration into existing infrastructure. This paper describes the extensible characteristic set which makes Robot framework exceptionally qualified for automation of test cases in current development environment within short time frame. We further explain the usage of framework using a sample test suite with its log and reports, also exploring different available libraries and tools available.

Keywords: Cryptography; Encryption; Symmetric; Asymmetric; Robot framework; Selenium; Automation; Manual Testing; KeywordDriven

Introduction

Automation Testing utilizes specialized testing tools and reduce the human or manual interruption, redundant or repetitive errands. Use of automation in testing saves both time and efforts [1]. Numerous automation tools are available that are commercial and open source, out of which some of them are sophisticated and use proprietary or existing coding languages. The style wherein test cases are written can be keyword driven, behavior driven and data driven. Keyword driven testing, test scripts are executed at higher level of abstraction. Robot framework is one such test automation framework which is technology independent for acceptance test-driven development (ATDD). The development of this tool was sponsored by Nokia Siemens Networks and was open sourced in 2008.

In Robot framework test cases are written in tabular format using keyword driven approach. Robot Framework goes well with all Operating Systems available. It was built on Python and runs on Python and Iron Python. The Framework has an extensible support for external tools and libraries which are open source, Selenium Library is one among them which aids interacting with the browsers and helps with web application and UI testing. Operating System Library, MongoDB Library, String Library, Android Library, Java Libcore are some of the other available libraries. In our test case we will be using Selenium Library to interact with Browser. This paper is organized as follows. Section 2 explains the architecture of framework. Section 3 describes libraries and tools provided by the framework. Section 4 describes the benefits of using framework. Section 5 describes the execution of test cases in the framework. Section 6 compares manual testing with automation using framework. Section 7 draws conclusion.

Architecture of Framework

Test execution is begun from the command line. Some of the IDE’s like eclipse provide an option to execute the test case directly without using CL. At the point when execution is begun, the framework initially parses the information. It uses keywords furnished by the libraries, executes test cases. Interaction with target system under test is handled by test libraries. Libraries in turn may use lower level tool as drivers or use interfaces directly. The framework offers several standard libraries that which provides actual testing capabilities during testing by providing keywords [2]. It also automatically generates the report and logs for reference Figure 1.

Figure 1: Architecture of Robot Framework.

Test data

Test data is in the tabular form. To begin with test execution framework parses these data to run test case

Robot framework

A test automation framework that requires python to be installed on your system to run the test cases.

Test Libraries

A number of standards, external and other libraries are made available to aid in automation by providing variety of keywords.

Test tool

Framework in addition to libraries also provide tools to facilitate other actions like generating report, keyword documentations, clean up robot files.

System under automation testing

Represents actual system that is being tested, with whom framework interacts.

Libraries and tools

Libraries give the real automation and testing capacities to Robot Framework by giving keywords. A few standard libraries are packaged with the framework, and there are independently evolved external libraries in abundance that can be installed depending on your requirements.

Built In is a Standard Library imported naturally and, in this way, constantly accessible. It that gives a lot of nonexclusive keywords required regularly for instance, or conversions(e.g Convert to Binary, convert to Boolean) for verifications (e.g. Should Be Empty, Should Be Equal, Should Contain) and for different purposes (e.g. Sleep, Log to Console, Run Keywords).

Operating System is a Standard Library that provides keywords that enable various Operating System related tasks where the framework is running. (e.g. Set Environment Variable, Run, Create File ,File Should Exist, Copy Files)

A web testing Library that uses the Selenium WebDriver modules internally to control the elements on the web browser. For the keywords to interact with the web elements needs a locator argument to be passed to it while using. Locator can be an id of the web element, css property or an Xpath. Keywords provided by the framework includes Click Element, Click Button, Drag and Drop, Get Cookies, Input Text, Press Key etc.

External Library for interacting with MongoDB using pymongo(e.g. Connect To Mongodb,Get Mongodb Databases, Retrieve All Mongodb Records, Drop Mongodb Database).

Builtin tool for generating logs and reports. One among its important feature is that the ability to merge the output from various other test execution rounds. This helps in generating an overall report of running the identical test cases on different environments.

Test Data Editor offered by the framework. Provides a staright forward way of writing test suites for automation through handy keyboard shortcuts.

Framework provides plugin for eclipse IDE.It is useful not only for writing testcases but also to look at the source of libraries and writing new libraries. When it comes to maintaining test cases both RIDE and Eclipse plugin are equally good. We use Eclipse plugin in our example test case.

Benefits of Using Robot Framework

Manual testing cannot explore the whole product effectively, debugging becomes even more difficult and time consuming with manual efforts. Whereas with frameworks like robot, the whole process just needs an individual to execute a command and check results later on. Tester can be engaged with some other work. Also, the way in which framework is designed to write testcases follow a natural flow of precondition, action, verification and cleanup [3]. RIDE (Robot Integrated Development Environment) is a graphical user interface is provided by the framework that aids in writing the testcases. Descriptions for each of the keyword is provided in such way that even a non-technical person can understand the meaning. All the reports and log information are generated automatically after the execution of command. The cost of automating a test is best measured by the number of manual tests prevented from running and the bugs it will therefore cause to miss [4], and this is probably the biggest strength of the Robot Framework.

Example of Testcase Execution Using Eclipse Ide

In order to mitigate manual testing efforts, test scripts are written with the help of keywords that are simple and consumes less time, hence ease out most of the testing effort. In Robot Framework, a test case is basically a combination of keywords that perform some defined set of tasks. We can either use a built-in keyword or can define our own keyword. Our example uses Selenium Library keywords to open chrome browser and search about Robot Framework as shown in Figure 2.

Figure 2: Test case example.

Test case can be executed from the terminal, which leads to generation of execution report by the framework. It can also be executed from IDE directly. All the critical test cases should be passed in order for a successful completion of test. Once test cases are executed three types of file gets generated. Location/Links to the file will be available on the terminal. Background color of the report/log files shows the status of the executed test suite (pass/fail) as shown in Figures 3 and 4.

Figure 3: Test case execution Report (Fail).

Figure 4: Test case execution Report (Pass).

In addition to report file two other files are created, Output.Xml and a Log file which helps in further analysis.Log file gives detailed explanation of the tasks that got executed during the test as shown in Figures 5 and 6.

Figure 5: Log File created of executed of test case.

Figure 6: Output Xml file generated.

Manual testing and automation

It is important to know when and what type of activities need to be automated and not to be done manually [5] in testing environment. Software testing [6] suggests the usage of automatic or manual means to run a test on the software product. Conventional testing process that requires human interruption is tedious, non-specialized and wastes useful development time. Automation test [7-9] utilizes techniques, apparatuses and yield, decreasing manual mediation and accomplish unmanned gatekeeper finishing test, and naturally create logs and report of the test actions, which helps in examination of test after effects of test activities.

Clearly, the test automated innovation improves the productivity in testing and lessen repetitive work.

Conclusion

Robot Framework thus has a natural flow for automation and use keywords makes it easy for a non-technical person to understand the process and explore more. Ease of extension makes it a great tool for use in IT automation process. Everything including testing, report generation, log file generation takes place automatically thus saving time and effort in continuous integration systems. Its multitudinous benefits make it highly eligible automation tool in current development process.

In the period of regular refreshing rendition of programming, repeatability of task irritates the test staff. The valuable test automation process improves the test process usage rate, decrease the test staff dreary activity, yet additionally the computerization test procedure can be performed without wasting much of tester’s time. Also, testing work force can utilize these times to perform other useful activities improving productivity.

References

international publisher, scitechnol, subscription journals, subscription, international, publisher, science

Track Your Manuscript

Awards Nomination