introduction to apis & how to automate apis testing with selenium web driver?

10
{ Introduction to APIs & how to automate APIs testing with selenium web driver?

Upload: bugraptors

Post on 13-Feb-2017

19 views

Category:

Technology


2 download

TRANSCRIPT

Page 1: Introduction to APIs & how to automate APIs testing with selenium web driver?

{

Introduction to APIs & how to automate APIs testing with selenium web driver?

Page 2: Introduction to APIs & how to automate APIs testing with selenium web driver?

An application-programming interface(API) consists of a set of standards and programming instructions for accessing a Web tool or Web-based software application. Application Program interface is a set of protocols, routines and tools required for building software applications. An API specifies the way in which the software components should interact. Additionally, APIs are used when the graphical user interface(GUI) components are to be programmed. A good API provides all the building blocks and makes it easier to develop a program. A programmer puts all the building blocks together.

Introduction

Page 3: Introduction to APIs & how to automate APIs testing with selenium web driver?

Different types of APIs are available for operating systems, applications or websites. For example, ‘Windows’ has many API sets that are being used by the system hardware and applications i.e. when users copy and paste text from one application to another, it is the API that makes it work. Most of the operating environments, such as MS-Windows also provides APIs which allows the programmers to write applications that are consistent with the operating environment. Today, the websites also specify the APIs. For example, with the help of Amazon or eBay APIs, developers can create specialized web stores by using the existing retail infrastructure. Third-party software developers can also use the Web APIs so as to create software solutions for the end-users.

Page 4: Introduction to APIs & how to automate APIs testing with selenium web driver?

An API is not a user interface but a software-to-software interface. With APIs, applications are allowed to communicate with each other without any user intervention. When you buy movie tickets online and enter your credit card information, Web site makes use of an API to send your credit card information to a remote application that verifies whether your information is correct or not. Once the payment gets confirmed, the remote application sends back a response to the Web site notifying that it is 'OK' to issue the tickets.

Page 5: Introduction to APIs & how to automate APIs testing with selenium web driver?

WebDriver is one of the most powerful and popular tools of Selenium toolkit. WebDriver is an extended version to Selenium RC with surplus advantages and it overcomes many of its limitations. Unlike Selenium IDE, WebDriver provides support to many latest browsers and platforms. In case of WebDriver, selenium server isn’t required to be started prior to the test scripts execution unlike Selenium RC. Selenium 2.0 is an aggregation of Selenium RC with WebDriver API. Selenium was developed so as to support dynamic web pages and Ajax calls. It also supports various drivers to perform web based mobile testing.

Introduction to Selenium WebDriver

Page 6: Introduction to APIs & how to automate APIs testing with selenium web driver?

IT enterprises globally are implementing various automation solutions in order to provide effective and efficient software testing services. New and innovative approaches have been developed for test automation utilizing Selenium framework, thereby helping the enterprises to improve their service quality and thereby reducing the costs. Keeping this in mind, Selenium framework has been developed as it helps the testing teams to automate the validations of URL based APIs.

Selenium WebDriver Framework for API Testing

Page 7: Introduction to APIs & how to automate APIs testing with selenium web driver?

Selenium Based Automation Regression Suite: Selenium framework is a data vbdriven solution which consists of i) Java based Driver scripts ii) Frameworks methods created as per method types of APIs.

Page 8: Introduction to APIs & how to automate APIs testing with selenium web driver?

1. Selenium framework takes considerably less time to prepare test data or to validate each scenario in comparison to manual testing.2. For the preparation of the data and to validate 350 scenarios, it takes approximately 7 man days per resource. However, with the implementation of the selenium framework the time gets reduced to 1.5 hours (approximately).3. It is easy to develop the Selenium framework and the test cases can be maintained effortlessly.4. It is possible to integrate the Selenium framework with Continuous Integration(CI) build deployment process.

Benefits of Selenium Framework

Page 9: Introduction to APIs & how to automate APIs testing with selenium web driver?

public static String PostRequest(String PostRequestURL,String Parameters) throwsThrowable {String responseData="";System.setProperty("http.proxyHost", "Proxy server IP");  // Enter your proxy name hereSystem.setProperty("http.proxyPort", "Proxy server port");HttpPost POSTrequest = new HttpPost(PostRequestURL);StringEntity param =new StringEntity(Parameters);POSTrequest.addHeader("content-type","application/json");POSTrequest.setEntity(param);HttpResponse response = httpClient.execute(POSTrequest);BufferedReader  rd = new BufferedReader(newInputStreamReader(response.getEntity().getContent()));int statuscode=response.getStatusLine().getStatusCode();Assert.assertTrue(statuscode==200, "Failed : HTTP error code :"+statuscode);responseData=rd.readLine();System.out.println("output is =" +responseData);return responseData;}Selenium framework simplifies API validation by building the test cases.  The same can be leveraged for a selenium driven automation engine to validate and update the test execution results.

Example

Page 10: Introduction to APIs & how to automate APIs testing with selenium web driver?