An Exploratory Study on Web Application Automation Testing

Total Page:16

File Type:pdf, Size:1020Kb

An Exploratory Study on Web Application Automation Testing CALIFORNIA STATE UNIVERSITY SAN MARCOS PROJECT SIGNATURE PAGE PROJECT SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE MASTER OF SCIENCE IN COMPUTER SCIENCE PROJECT TITLE: AN EXPLORATORY STUDY ON WEB APPLICATION AUTOMATION TESTING AUTHOR: Nishtha Sharma DATE OF SUCCESSFUL DEFENSE: 07/31/2020 THE PROJECT HAS BEEN ACCEPTED BY THE PROJECT COMMITTEE IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF MASTER OF SCIENCE IN COMPUTER SCIENCE. Simon Fan 7/31/2020 PROJECT COMMITTEE CHAIR SIGNATURE DATE Xin Ye 7/31/2020 PROJECT COMMITTEE MEMBER SIGNATURE DATE An exploratory Study on Web Application Automation Testing Submitted in Partial fulfilment of the requirements for the degree of Master of Science California State University San Marcos Department of Computer Science 2020 By Nishtha Sharma Under the guidance of Dr. Simon Fan Project Report Nishtha Sharma Abstract Large organizations like a university typically have many web applications deployed and used by a larger number of users every day. As such an application changes, it should be thoroughly tested to avoid unexpected service failures or interruptions. The purpose of this project is to evaluate the pros and cons of the Page-Object design pattern in Selenium-based testing of web applications. We have experimented with two web applications deployed at CSUSM and our conclusion is two-fold. On the one hand the Page-Object design pattern can largely improve readability due to clean separation between page-specific test code and production code. On the other hand, it improves the change management of large web applications: any UI change can easily be implemented, updated and maintained into the Page Objects. 1 Project Report Nishtha Sharma Table of contents: Abstract…………………………………………………………………………………….………………………………………..1 1. Introduction……………………………………………………………………………………………………………………….3 1.1 Promises and Problems of Test Automation…………………………………………………………….4 1.2 Different Test Automation Approaches…………………………………………………………………….6 1.2.1 Dynamic vs. Static Testing………………………………………………………………………………6 1.2.2 Functional vs. Non-Functional Testing………………………………………………………….6 1.2.3 Granularity of the Tested System………………………………………………………………….7 1.2.4 Testing Activities……………………………………………………………………………………………..8 1.2.5 Small Scale vs. Large Scale Test Automation………………………………………………..9 1.3 Scope……………………………………………………………………………………………………………………………10 2. Background and Related Work……………………….…………………………………………………………….11 2.1 Selenium…………………………………………………………………………………………………………………….. 11 2.2 Page Object Pattern……………………………………………………………………………………………………14 2.3 TestNG…………………………………………………………………………………………………………………………15 2.4 Extent Reports…………………………………………………………………………………………………………….18 2.5 Related Work………………………………………………………………………………………………………………..19 3. Design and Implementation…………………………………………………………………………………… 21 3.1 Design Diagram………………………………………………………………………………………………….21 3.2 Components required to get started with automation………………………………………22 3.3 Basic steps for Selenium test case………………………………………………………………………26 3.4 Case Study…………………………………………………………………………………………………………28 3.5 Test Execution Report………………………………………………………………………………………..31 4. Lessons Learned………………………………………………………………………………………………………36 5. Conclusion……………………………………………………………………………………………………………… 39 References…..………………………………………………………………………………………………………………41 2 Project Report Nishtha Sharma 1. Introduction: With the development of each web application or software there is a very important need to verify that the developed software’s functionality is as per the requirements of the stakeholders. Software testing is a process to evaluate the functionality of a software application with an intent to find whether the developed software has met the specified requirements or not and to identify the potential defects in order to produce the quality product. Automation testing uses software tools, separate from the software being tested, to control the execution of tests and the comparison of actual outcomes with predicted outcomes. Test automation process can automate repetitive but necessary tasks in a formalized testing process, or perform additional testing that would be difficult to do manually. Test automation is critical for continuous delivery and continuous testing [3]. The key benefit of automating any web application is it saves time and effort to test the application. Software tests have to be repeated often during development cycles to ensure quality. Every time source code is modified software tests should be repeated. For each release of the software it may be tested on all supported operating systems and hardware configurations. Manually repeating these tests is costly and time consuming. Once created, automated tests can be run over and over again at no additional cost and they are much faster than manual tests. Automated software testing can reduce the time to run repetitive tests from days to hours [3]. Once automated tests have been developed, they can be run quickly and repeatedly. Many times, this can be a cost-effective method for regression testing of software products that have a long maintenance life. Even minor patches over the lifetime of the application can cause existing features to break which were working at an earlier point in time. Test automation reduces the effort associated with manual testing. Manual effort is needed to develop and maintain automated checks, as well as reviewing test results [3]. Software systems are getting more and more important for organizations and individuals alike and at the same time they are growing bigger and more complex. It is thus only logical that importance of software quality is also rising. If quality does not get better as systems grow in size, complexity and importance, then software system may face more issues in future. The need for better quality means more pressure for software testing and for test engineers taking care of it. Test automation, i.e. giving some testing tasks to computers, is an obvious way to ease their workload. Computers are relatively cheap, they are faster than humans, they do not get tired or bored, and they work over weekends without extra pay. Giving computers all the needed details is not easy and takes time. Test automation can be used in multiple ways. It can and should be used differently in different contexts and no single automation approach works everywhere. Test automation is no silver bullet either but it has a lot of potential and when done well it can significantly help test engineers to get their work done faster and better [12]. 3 Project Report Nishtha Sharma Automation can offer huge improvements in test efficiency and effectiveness but may require substantial investment. Software Test automation makes use of specialized tools to control the execution of tests and compares the actual results against the expected result. The test execution environment configured for testing. Test bed consists of specific hardware, Operating system, network configuration, the product under test, other system software and application software [12]. 1.1 Promises and Problems of Test Automation Test automation is expected to help run lots of test cases consistently again and again on different versions of the system under test. Automation can also ease test engineers’ workload and release them from repeating tasks. All these promises has the potential to increase software quality and shorten testing time. All this makes test automation look really attractive but achieving them in real life requires plenty of hard work. If automation is not done well it will be abandoned and promises will never be realized. The general problem with test automation seems to be forgetting that any larger test automation project is a software project on its own right [17]. Software projects fail if they do not follow processes and are not managed adequately, and test automation projects are not different. Of all people, engineers ought to realize how important it is to have a disciplined approach to software development. Manual Testing of all workflows, all fields, negative scenarios is time and money consuming. It is difficult to test for multilingual sites manually. Automation does not require human intervention. Automation increases the speed of test execution, Automation helps increase Test Coverage. Below table describes some pros and cons of automation testing: Automation Pros Description Run existing regression tests on Being able to run previously created tests without extra effort a new version of a program [16] clearly makes testing more efficient. Run more tests more often [16] Automation means faster test execution which means more test rounds. Automation should also make creating new test cases easy and fast. Perform tests which would be For example performance and stress tests are nearly impossible difficult or impossible to do to conduct without automation. manually [19] Better use of resources Automation repeating and boring tasks releases test engineers for more demanding and rewarding work. Consistency and repeatability of Tests are always run the same way so test results can be tests [19] consistently compared to previous results from previous testing rounds. Tests can also be easily repeated on different environments. 4 Project Report Nishtha Sharma Automation Pros Description Reuse of tests [19] Reusing tests from earlier projects gives a kick start to a new project. Earlier time to market [17] Reusing tests and shortening test execution time fastens feedback cycle to developers. In the end that shortens
Recommended publications
  • A Study on Functioning of Selenium Automation Testing Structure
    Volume 7, Issue 5, May 2017 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Study on Functioning of Selenium Automation Testing Structure 1Jyoti Devi, 2Kirti Bhatia, 3Rohini Sharma* 1, 2 Sat Kabir Institute of Technology and College Management Bahadurgarh, Haryana, India 3 Jesus and Mary Delhi University Delhi, India DOI: 10.23956/ijarcsse/V7I5/0204 Abstract— In recent years, there is advancement in the field of software engineering, applications are getting automated. As the software is error prone, there should some easy and automated way to test the software application. It is very challenging to test such complicated web applications. Human intervention can be reduced by using automation tools. Selenium is an online web based software testing tool. In this article, we have study the design and functioning of the selenium tool and used it to test various online applications. In order to test an application, testers do need not to learn the selenium web driver tool completely. This tool is helpful for a developer and tester, they can analyse their code owing to screen shot characteristics of framework. It generates the adapted test report to the tester. It is very simple to sustain and restore the test suite for new version of the application by this tool. Keywords—Selenium; Automated Testing; Test Cases; Report Generation I. INTRODUCTION The objective of software testing is to discover faults and errors in a software application. Software testing utilizes more than 50 % time of software development lifecycle. Testing time depends upon the algorithm used, programming language, line of codes, function points, external and internal interfaces [1].
    [Show full text]
  • Dr. C#: a Pedagogic IDE for C# Featuring a Read-Eval-Print-Loop by Dennis Lu
    RICE UNIVERSITY Dr. C#: A Pedagogic IDE for C# Featuring a Read-Eval-Print-Loop by Dennis Lu ATHESIS SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE Master of Science APPROVED,THESIS COMMITTEE: Robert Cartwright, Chair Professor of Computer Science Joe Warren Professor of Computer Science Dan Wallach Assistant Professor of Computer Science Dung X. Nguyen Lecturer, Computer Science Houston, Texas April, 2003 Dr. C#: A Pedagogic IDE for C# Featuring a Read-Eval-Print-Loop Dennis Lu Abstract As the primary programming language of the Microsoft .NET platform, C# will play a significant role in software development for the foreseeable future. As the language rapidly gains popularity in industry, tools made for C# development fo- cus on the professional programmer, while leaving the beginning computer science student behind. To address this problem, we introduce Dr. C#, a simple lightweight develop- ment environment with an integrated, interactive Read-Eval-Print-Loop (REPL). Dr. C# helps flatten the learning curve of both the environment and the language, enabling students to quickly learn key elements of the language and focus more easily on concepts. Dr. C# thus serves not only as a learning tool for beginner students but also as a teaching tool for instructors. The editor is based on an open source IDE called SharpDevelop. This thesis describes the implementation of Dr. C# focusing primarily on building the REPL and integrating with SharpDevelop. Acknowledgments I would like to thank my advisor Professor Robert “Corky” Cartwright for giving me the opportunity and autonomy to develop Dr. C#. I would also like to thank Professor Dung Nguyen for acting as co-advisor and for his years of guidance and support.
    [Show full text]
  • Performance Analysis of Automation Testing Tools for WPF Application
    International Journal of Research (IJR) e-ISSN: 2348-6848, p- ISSN: 2348-795X Volume 2, Issue 06, June 2015 Available at http://internationaljournalofresearch.org Performance Analysis of Automation Testing Tools for WPF Application Nishi Tiku1; Ameya Parkar2; Idris Rampurawala3& Aswathi Menon4 1 Head of Department, Department of Master in Computer Application, Vivekanand Education Society’s Institute of Technology - Mumbai, Maharashtra, India 2 Assistant Professor, Department of Master in Computer Application, Vivekanand Education Society’s Institute of Technology - Mumbai, Maharashtra, India 3 Student, Department of Master in Computer Application, Vivekanand Education Society’s Institute of Technology - Mumbai, Maharashtra, India 4 Student, Department of Master in Computer Application, Vivekanand Education Society’s Institute of Technology - Mumbai, Maharashtra, India Abstract Software testing provides a means to reduce defects as early as possible in SDLC. errors, cut maintenance and overall software costs. Testing has become most important Automation testing addresses these challenges parameter in the case of software development presented by manual testing. Automating test lifecycle (SDLC). Testing automation tools enables cases leaves manual testers to focus more on developers and testers to easily automate the writing test cases and analysis of defects and entire process of testing in software development. quality issues in the project. With so many tools in It is to examine & modify source code. Effective the market, in the past comparison studies have Testing produces high quality software. The been done to evaluate features and usability of objective of the paper is to conduct a comparative different tools. It can be executed multiple times study of automated tools such as available in across iterations much faster than manual test market in HP Quick test professional (QTP) and cases, saving time as well as cost.
    [Show full text]
  • Testcomplete Certification
    Certification by SMARTBEAR TestComplete Certification Certification for Test Automation Professionals Frequently Asked Questions About the TestComplete Certification The TestComplete Certification is a technical automated testing credential to validate your expertise and knowledge of TestComplete best practices. By earning this certification, you are solidifying yourself as a top test automation professional in TestComplete. This 60 question, 90 minute certification was designed to challenge testers in best practices in TestComplete, as well as test their understanding of the purpose and concepts behind automated testing and scenarios. To pass you need 70% or higher. It is designed to cover the practitioner functions of TestComplete, and deep dives into scripting, data- driven testing and more. A complete list of subjects is below: ¿ TestComplete IDE ¿ Data-Driven Testing ¿ Manual Testing ¿ Project Overview ¿ Web Testing ¿ Low Level Procedures ¿ Playback and Record ¿ Distributed Testing ¿ Loading DLL’s ¿ Keyword Testing ¿ Test Logs ¿ .NET Bridge Integration ¿ Script Testing ¿ Debugging ¿ Database Testing ¿ Name Mapping ¿ Deployment and ¿ Error Handling ¿ Checkpoints Scheduling ¿ Event Handling ¿ Web Service Testing ¿ Variables ¿ User Forms ¿ Implementing Events The Perfect Candidate The perfect candidate has about a year’s worth of experience with TC and test automation, and should be able to design tests, create test automation strategies and be able to write scripts in VBScript or JScript. Questions on the exam are mostly in Jscript, with a few in VBScript. Suggested Learning While there are no prerequisites, we recommend you: ¿ Have at least six months to one year of hands-on experience with TestComplete ¿ Review the topics above on our support site, which are covered on the exam ¿ Consider purchasing the TestComplete video tutorials to aid in your studying (not all exam questions are covered in the videos) Before You Begin Before starting the test, make sure you have 90 minutes of free, uninterrupted time available.
    [Show full text]
  • Top 19 Testng Interview Questions & Answers
    https://career.guru99.com/ Guru99 Provides FREE ONLINE TUTORIAL on Various courses like Java | MIS | MongoDB | BigData | Cassandra | Web Services ------------------------------------------------------------------------------------------------------------------------------- SQLite | JSP | Informatica | Accounting | SAP Training | Python ------------------------------------------------------------------------------------------------------------------------------- Excel | ASP Net | HBase | Testing | Selenium | CCNA | NodeJS ------------------------------------------------------------------------------------------------------------------------------- TensorFlow | Data Warehouse | R Programming | Live Projects | DevOps ------------------------------------------------------------------------------------------------------------------------------- Top 19 TestNG Interview Questions & Answers Following are frequently asked questions in interviews for freshers as well as experienced TestNG professionals. 1) What is TestNG? TestNG is an automated open source testing framework. It is based on JUnit framework but is not a JUnit extension. 2) What are the TestNG features? TestNG features include TestNG uses more OO (object-oriented) and Java features It supports testing integrated classes Different Annotations are supported Separate compile time test code from data info /run time configuration Run-time configuration is flexible Flexible plug-in API For further flexibility embeds BeanShell Multi-threaded selenium testing support Supports parallel testing,
    [Show full text]
  • Fast and Scalable Automation Framework : “Booster”
    WHITEPAPER Fast and Scalable Automation Framework : “Booster” Testing is a form of software business insurance. More automation coverage means less risk. and that is good news for everyone. Sonal Pallewar Email : [email protected] “Automation Framework” and “Why do we need a framework for test automation?” A framework is a software solution that can be used in place of ordinary code that offers generic functions. Some of the challenges of automation are: ● Writing and maintaining test automation frameworks Booster– Linux based ● Scaling to high number of simultaneous tests in multithreaded various environments automation framework ● Reporting and analytics of large number of test results to assess test coverage and build quality ● Ease of use to extend and maintain the framework ● Rich libraries that can be leveraged for quick delivery of automation ”Booster” addresses the above challenges and is used to automate and test several web and mobile frontend applications as well as backend components by executing hundreds of simultaneous tests. Booster is a best-fit Linux based multithreaded automation framework that is fast, scalable and easily extensible. Booster also has readily available rich web, mobile, Linux libraries that can be leveraged to quickly build product specific tests without investing much time in interaction with web and mobile UI interfaces. 1 Need of Booster framework Linux Based Booster is a Linux based framework Supports remote execution of web tests Supports remote execution of tests in target environments with the help of paramiko python library. Supports frontend and backend automation Consists of a rich set of Selenium, mobile and Linux libraries Selenium Grid Supports serial and parallel execution of tests, Multi-platform support i.e.
    [Show full text]
  • Selenium Python Bindings Release 2
    Selenium Python Bindings Release 2 Baiju Muthukadan Sep 03, 2021 Contents 1 Installation 3 1.1 Introduction...............................................3 1.2 Installing Python bindings for Selenium.................................3 1.3 Instructions for Windows users.....................................3 1.4 Installing from Git sources........................................4 1.5 Drivers..................................................4 1.6 Downloading Selenium server......................................4 2 Getting Started 7 2.1 Simple Usage...............................................7 2.2 Example Explained............................................7 2.3 Using Selenium to write tests......................................8 2.4 Walkthrough of the example.......................................9 2.5 Using Selenium with remote WebDriver................................. 10 3 Navigating 13 3.1 Interacting with the page......................................... 13 3.2 Filling in forms.............................................. 14 3.3 Drag and drop.............................................. 15 3.4 Moving between windows and frames.................................. 15 3.5 Popup dialogs.............................................. 16 3.6 Navigation: history and location..................................... 16 3.7 Cookies.................................................. 16 4 Locating Elements 17 4.1 Locating by Id.............................................. 18 4.2 Locating by Name............................................ 18 4.3
    [Show full text]
  • Selenium Trial Version Free Download Selenium Trial Version Free Download
    selenium trial version free download Selenium trial version free download. Automate your web browser with the Selenium Nodes for KNIME. Set up a graphical workflow, simulate human interaction using your browser of choice, and replay as often as you wish — without writing a single line of code. The Selenium Nodes are your tools for … Web scraping — GET or POST? Cookies, headers, authentication? Web crawling and data extraction is a pain, especially on JavaScript-based sites. With the Selenium Nodes you have the power of a full-blown browser combined with KNIME’s processing and data mining capabilities. Task automation — Time is precious and repetitive tasks are repetitive are repetitive are repetitive. Bored of doing the same stupid work within your browser over and over again? Set up a workflow once, execute it as often as necessary. Application testing — Develop tests for your web apps as graphical workflows. Dynamic and JavaScript-heavy applications? No problem! Execute your tests and create extensive reports of your results using KNIME’s reporting and statistics functionalities. Selenium Nodes are based on the Selenium WebDriver framework and support all major browsers: Chrome, Firefox, Internet Explorer, Edge, Safari, Opera. If your computer can run it, you can most likely use it with the Selenium Nodes. You can run headless Chrome and Firefox in batch and KNIME Server environments or use remote services such as BrowserStack to run your browser in the cloud. Download — The trial version allows you to test the entire functionality one month free of charge! Request your trial key below and then follow the download instructions.
    [Show full text]
  • An Empirical Study on Robot Test Automation Framework
    Shetty et al., J Comput Eng Inf Technol 2020, 9:3 DOI: 10.37532/jceit.2020.9(3).227 Journal of Computer Engineering & Information Technology Research Article A SciTechnol Journal MongoDB Library, String Library, Android Library, Java Libcore are An Empirical Study on Robot some of the other available libraries. In our test case we will be using Selenium Library to interact with Browser. This paper is organized Test Automation Framework as follows. Section 2 explains the architecture of framework. Section Vijayashree Shetty*, Swetha S and Bindu Ashwini C 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 Abstract testing with automation using framework. Section 7 draws conclusion. Recently with the usage of robot framework there has been a convincing improvement in IT automation process, improving both Architecture of Framework quality and efficiency of products with the decreased association Test execution is begun from the command line. Some of the IDE’s of Tester. Robot Framework is open and extensible. A ground- like eclipse provide an option to execute the test case directly without breaking and adaptable automation solution can be made by using CL. At the point when execution is begun, the framework integrating Robot Framework with any other tool. It ensures easy extensibility and reusability through its ability to form high-level initially parses the information. It uses keywords furnished by the keywords from existing keywords. Further its abilities can be libraries, executes test cases.
    [Show full text]
  • Testing Java EE 6 Applications: Tools and Techniques
    Testing Java EE 6 Applications: Tools and Techniques Reza Rahman Expert Group Member, Java EE 6 and EJB 3.1 Resin EJB 3.1 Lite Container Developer Author, EJB 3 in Action [email protected] Testing and Java EE Testing critical in enterprise development Pain-point that was not addressed well by J2EE Java EE 6 helps enormously by providing a number of enabling features geared towards testing Still somewhat a patchwork of evolving solutions Focus on developer (unit and integration) testing Focus on JUnit More about new tools rather than new techniques Testing Java EE Applications Testing Servlet 3 JUnit, HttpUnit, HtmlUnit great choices See if your container can be embedded into a unit test Cactus and Selenium can be good choices too Simulated Servlet containers like ServletUnit or mocking Servlet objects with EasyMock or Mockito options for very simple cases Servlet 3 Testing Demo! Testing JSF 2 JSF 2 project stages invaluable for debugging, test configuration, component development For simple cases, generic Servlet testing tools could be used, especially Selenium JSFUnit ideal for more complete JSF testing JSFUnit uses Cactus, JUnit, HttpUnit, HtmlUnit under the hood JSF 2 Testing Demo! Testing EJB 3.1/CDI CDI increases Java EE middle-tier testability by leaps and bounds EJB 3.1 embedded containers, generic dependency injection, @Alternative, portable extensions, XML deployment descriptors key enablers Arquillian/ShrinkWrap ideal cross-vendor CDI/EJB 3.1 testing tools Apache MyFaces CODI Testing another option Testing EJB 3.1/CDI Check to
    [Show full text]
  • Proof of Concept (Poc) Selenium Web Driver Based Automation Framework
    e-ISSN (O): 2348-4470 Scientific Journal of Impact Factor (SJIF): 4.72 p-ISSN (P): 2348-6406 International Journal of Advance Engineering and Research Development Volume 4, Issue 7, July -2017 Proof of concept (Poc) selenium web driver based Automation framework B AJITH KUMAR Master of science ( Information Technology ) Department of Mathematics COLLEGE OF ENGINNERING GUINDY (CEG) Anna university ABSTRACT: To control test execution time. Software testing is a process of executing a program or application with the intent of finding the software bugs. It can also be stated as the process of validating and verifyingthat a software program or application or product: Meets the business and technical requirements that guided it’s design and development. Works as expected. KEY WORDS: SOFTWARE TESTING .AUTOMATION TESTING ,SELENIUM, SELENIUM WEBDRIVER ,AGILE TESTING , TESTNG Test automation : In software testing, test automation is the use of special software (separate from the software being tested) to control the execution of tests and the comparison of actual outcomes with predicted outcomes. Test automation can automate some repetitive but necessary tasks in a formalized testing process already in place, or add additional testing that would be difficult to perform manually. AGILE TESTING : A software testing practice that follows the principles of agile software development is called Agile Testing. Agile is an iterative development methodology, where requirements evolve through collaboration between the customer and self- organizing teams and agile aligns development with customer needs. Selenium automation tool Selenium has the support of some of the largest browser vendors who have taken (or are taking) steps to make Selenium a native part of their browser.
    [Show full text]
  • Robotframework
    robotframework #robotframe work Table of Contents About 1 Chapter 1: Getting started with robotframework 2 Remarks 2 Versions 2 Examples 2 Installation or Setup 2 Prerequisites 2 Python installation 3 Jython installation 3 IronPython installation 3 Configuring PATH & Setting https_proxy 3 Installing Robot Framework with pip 4 Installing Robot Framework from source 4 Installing Robot Framework 3.0 on a Windows Machine using Python 2.7.11 4 Chapter 2: How robot framework is used in Automation testing in Embedded Systems? 6 Introduction 6 Remarks 6 Examples 6 Remote Power Supply Testing 6 Remote Power supply simulation 6 Basic idea about RPS 6 How to Run RPS server ? 7 How to send commands to rps server ? 7 Requirements 8 Deriving test cases 8 Manual Testing 8 Writing test library 8 commands.py 8 Python key word documentation 9 Writing test Keywords 10 Algorithm to test power supply 10 Writing test cases using the above key words 10 How to execute RPS server and remote-power-supply.robot ? 11 Output 11 Following two diagrams explains about test architecture between RPS and RF 11 Remote Power supply test architecture 12 Robot frame work architecture 14 Credits 14 The complete code is available here 14 Credits 15 About You can share this PDF with anyone you feel could benefit from it, downloaded the latest version from: robotframework It is an unofficial and free robotframework ebook created for educational purposes. All the content is extracted from Stack Overflow Documentation, which is written by many hardworking individuals at Stack Overflow. It is neither affiliated with Stack Overflow nor official robotframework.
    [Show full text]