{"id":966,"date":"2019-12-06T16:48:17","date_gmt":"2019-12-06T11:18:17","guid":{"rendered":"http:\/\/http:\/\/artoftesting.com\/\/?p=966"},"modified":"2019-12-20T18:23:34","modified_gmt":"2019-12-20T12:53:34","slug":"restapimanualtesting","status":"publish","type":"post","link":"https:\/\/artoftesting.com\/restapimanualtesting","title":{"rendered":"Tools for Manual Testing of Rest API"},"content":{"rendered":"\n<p>Testing a REST API requires a client that consumes the REST API, users can then use the client to expose the particular HTTP method. In this post, I am presenting three tools using which one can Test the Rest API manually. These are Advanced Rest Client, Postman-Rest Client and Curl in Linux.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_73 counter-flat ez-toc-counter ez-toc-custom ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\"><p class=\"ez-toc-title\" style=\"cursor:inherit\">Content<\/p>\n<\/div><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/artoftesting.com\/restapimanualtesting\/#Using_Advanced_Rest_Client\" title=\"Using Advanced Rest Client\">Using Advanced Rest Client<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/artoftesting.com\/restapimanualtesting\/#Using_Postman-Rest_Client\" title=\"Using Postman-Rest Client\">Using Postman-Rest Client<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/artoftesting.com\/restapimanualtesting\/#Using_Linux_CURL\" title=\"Using Linux CURL\">Using Linux CURL<\/a><\/li><\/ul><\/nav><\/div>\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Using_Advanced_Rest_Client\"><\/span>Using Advanced Rest Client<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p>Advanced Rest Client is a chrome extension using which one can manually test a REST API.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"170\" height=\"150\" src=\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/advanced-rest-client-1.jpg\" alt=\"Rest API Manual Testing Tool\" class=\"wp-image-967\"\/><\/figure><\/div>\n\n\n\n<p><strong>How to get Advanced Rest Client-<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Go to Google Chrome&#8217;s Web Store<\/li><li>Search for &#8220;Advanced Rest Client&#8221; or directly go&nbsp;<a href=\"https:\/\/chrome.google.com\/webstore\/detail\/advanced-rest-client\/hgmloofddffdnphfgcellkdfbfbjeloo\">here<\/a>&nbsp;and Install the extension<\/li><li>Once installed, click the &#8220;Advanced Rest Client&#8221; icon under chrome&#8217;s app section &#8211; chrome:\/\/apps\/<\/li><\/ul>\n\n\n\n<p><strong>How to use Advanced Rest Client<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>One installed, launch the extension<\/li><li>Enter the URL of the API in the URL textbox<\/li><li>Select the radio button for the type of HTTP method to hit- e.g. POST<\/li><li>Provide Headers (if required), in the Headers textbox<\/li><li>Under Payload, pass the request body of the API in the form of key-value pairs e.g. {{&#8220;key1&#8243;:&#8221;value1&#8243;,&#8221;key2&#8243;:&#8221;value2&#8221;}<\/li><li>Set the required content type e.g. application\/json<\/li><li>Hit the send button<\/li><\/ul>\n\n\n\n<p>You will find the appropriate response in the textbox below<br><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Using_Postman-Rest_Client\"><\/span>Using Postman-Rest Client<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p>Postman is also a chrome extension using which can be used to manually test a REST API.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"170\" height=\"150\" src=\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/postman-1.jpg\" alt=\"\" class=\"wp-image-968\"\/><\/figure><\/div>\n\n\n\n<p><strong>How to get Postman-Rest Client<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Go to Google Chrome&#8217;s Web Store<\/li><li>Search for &#8220;Postman Rest Client&#8221; or directly go&nbsp;<a href=\"https:\/\/chrome.google.com\/webstore\/detail\/postman\/fhbjgbiflinjbdggehcddcbncdddomop?hl=en\">here<\/a>&nbsp;and Install the extension<\/li><li>Once installed, click the &#8220;Postman Rest Client&#8221; icon under chrome&#8217;s app section &#8211; chrome:\/\/apps\/<\/li><\/ul>\n\n\n\n<p><strong>How to use Postman-Rest Client<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>One installed, launch the extension<\/li><li>Enter the URL of the API in the URL textbox<\/li><li>Select the type of HTTP method from the method dropdown &#8211; e.g. POST<\/li><li>Provide Headers (if required), in the Headers textbox<\/li><li>For methods like Put, Post, etc provide input in the form of key-value pairs<\/li><li>Set header params if required e.g. application\/JSON<\/li><li>Hit the send button<\/li><\/ul>\n\n\n\n<p>You will find the appropriate response in the textbox<br><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Using_Linux_CURL\"><\/span>Using Linux CURL<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p>CURL is a command-line tool to send and receive data using various protocols like- HTTP, HTTPS, FTP, LDAP, etc. It comes by default with most of the Linux distributions. In order to test a REST API using curl we just need to hit the command for the appropriate HTTP method in Linux.<\/p>\n\n\n\n<p><strong>Typical Curl syntax for HTTP POST request (User can update the content header and other values as per the requirement)-<\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; gutter: false; title: ; notranslate\" title=\"\">\ncurl -v -X POST -HContent-Type:application\/json --data-binary '{&quot;param1&quot;:&quot;value1&quot;, &quot;param2&quot;:&quot;value2&quot;}' http:\/\/&lt;ip&gt;:&lt;port&gt;\/API_URL\n<\/pre><\/div>\n\n\n<p><strong>Curl syntax for HTTP PUT request-<\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; gutter: false; title: ; notranslate\" title=\"\">\ncurl -v -X PUT -d param1=value1 -d param2=value2 http:\/\/&lt;ip&gt;:&lt;port&gt;\/API_URL\n<\/pre><\/div>\n\n\n<p><strong>Curl syntax for HTTP GET request-<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; gutter: false; title: ; notranslate\" title=\"\">\ncurl -v -X GET &quot;Accept: application\/json&quot; http:\/\/&lt;ip&gt;:&lt;port&gt;\/API_URL\n<\/pre><\/div>\n\n\n<p><strong>Curl syntax for HTTP Delete request-<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; gutter: false; title: ; notranslate\" title=\"\">\ncurl -i -H -X DELETE &quot;Accept: application\/json&quot; http:\/\/&lt;ip&gt;:&lt;port&gt;\/API_URL\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>Testing a REST API requires a client that consumes the REST API, users can then use the client to expose the particular HTTP method. In this post, I am presenting three tools using which one can Test the Rest API manually. These are Advanced Rest Client, Postman-Rest Client and Curl in Linux. Using Advanced Rest &#8230; <a title=\"Tools for Manual Testing of Rest API\" class=\"read-more\" href=\"https:\/\/artoftesting.com\/restapimanualtesting\" aria-label=\"Read more about Tools for Manual Testing of Rest API\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1696,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-966","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-api-testing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Rest API Manual Testing Tools<\/title>\n<meta name=\"description\" content=\"Learn manual testing concepts - Rest API Manual Testing Tools\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/artoftesting.com\/restapimanualtesting\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Rest API Manual Testing Tools\" \/>\n<meta property=\"og:description\" content=\"Learn manual testing concepts - Rest API Manual Testing Tools\" \/>\n<meta property=\"og:url\" content=\"https:\/\/artoftesting.com\/restapimanualtesting\" \/>\n<meta property=\"og:site_name\" content=\"ArtOfTesting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/artoftesting\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-06T11:18:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-12-20T12:53:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kuldeep Rana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@theartoftesting\" \/>\n<meta name=\"twitter:site\" content=\"@theartoftesting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kuldeep Rana\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting#article\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting\"},\"author\":{\"name\":\"Kuldeep Rana\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\"},\"headline\":\"Tools for Manual Testing of Rest API\",\"datePublished\":\"2019-12-06T11:18:17+00:00\",\"dateModified\":\"2019-12-20T12:53:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting\"},\"wordCount\":442,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg\",\"articleSection\":[\"API Testing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/artoftesting.com\/restapimanualtesting#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting\",\"url\":\"https:\/\/artoftesting.com\/restapimanualtesting\",\"name\":\"Rest API Manual Testing Tools\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting#primaryimage\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg\",\"datePublished\":\"2019-12-06T11:18:17+00:00\",\"dateModified\":\"2019-12-20T12:53:34+00:00\",\"description\":\"Learn manual testing concepts - Rest API Manual Testing Tools\",\"breadcrumb\":{\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/artoftesting.com\/restapimanualtesting\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting#primaryimage\",\"url\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg\",\"contentUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg\",\"width\":700,\"height\":400,\"caption\":\"Rest API Manual Testing Tools\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/artoftesting.com\/restapimanualtesting#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/artoftesting.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"API Testing\",\"item\":\"https:\/\/artoftesting.com\/category\/api-testing\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Tools for Manual Testing of Rest API\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/artoftesting.com\/#website\",\"url\":\"https:\/\/artoftesting.com\/\",\"name\":\"ArtOfTesting\",\"description\":\"A Beginners Guide to Testing\",\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/artoftesting.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/artoftesting.com\/#organization\",\"name\":\"ArtOfTesting\",\"url\":\"https:\/\/artoftesting.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png\",\"contentUrl\":\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png\",\"width\":400,\"height\":60,\"caption\":\"ArtOfTesting\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/artoftesting\",\"https:\/\/x.com\/theartoftesting\",\"https:\/\/www.linkedin.com\/groups\/4797819\/\",\"https:\/\/in.pinterest.com\/artoftesting\/\",\"https:\/\/www.youtube.com\/channel\/UCQ9PUVenvvyrUdDQ9yKn31Q\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\",\"name\":\"Kuldeep Rana\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g\",\"caption\":\"Kuldeep Rana\"},\"description\":\"Kuldeep is the founder and lead author of ArtOfTesting. He is skilled in test automation, performance testing, big data, and CI-CD. He brings his decade of experience to his current role where he is dedicated to educating the QA professionals.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Rest API Manual Testing Tools","description":"Learn manual testing concepts - Rest API Manual Testing Tools","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/artoftesting.com\/restapimanualtesting","og_locale":"en_US","og_type":"article","og_title":"Rest API Manual Testing Tools","og_description":"Learn manual testing concepts - Rest API Manual Testing Tools","og_url":"https:\/\/artoftesting.com\/restapimanualtesting","og_site_name":"ArtOfTesting","article_publisher":"https:\/\/facebook.com\/artoftesting","article_published_time":"2019-12-06T11:18:17+00:00","article_modified_time":"2019-12-20T12:53:34+00:00","og_image":[{"width":700,"height":400,"url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg","type":"image\/jpeg"}],"author":"Kuldeep Rana","twitter_card":"summary_large_image","twitter_creator":"@theartoftesting","twitter_site":"@theartoftesting","twitter_misc":{"Written by":"Kuldeep Rana","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/artoftesting.com\/restapimanualtesting#article","isPartOf":{"@id":"https:\/\/artoftesting.com\/restapimanualtesting"},"author":{"name":"Kuldeep Rana","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5"},"headline":"Tools for Manual Testing of Rest API","datePublished":"2019-12-06T11:18:17+00:00","dateModified":"2019-12-20T12:53:34+00:00","mainEntityOfPage":{"@id":"https:\/\/artoftesting.com\/restapimanualtesting"},"wordCount":442,"commentCount":0,"publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"image":{"@id":"https:\/\/artoftesting.com\/restapimanualtesting#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg","articleSection":["API Testing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/artoftesting.com\/restapimanualtesting#respond"]}]},{"@type":"WebPage","@id":"https:\/\/artoftesting.com\/restapimanualtesting","url":"https:\/\/artoftesting.com\/restapimanualtesting","name":"Rest API Manual Testing Tools","isPartOf":{"@id":"https:\/\/artoftesting.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/artoftesting.com\/restapimanualtesting#primaryimage"},"image":{"@id":"https:\/\/artoftesting.com\/restapimanualtesting#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg","datePublished":"2019-12-06T11:18:17+00:00","dateModified":"2019-12-20T12:53:34+00:00","description":"Learn manual testing concepts - Rest API Manual Testing Tools","breadcrumb":{"@id":"https:\/\/artoftesting.com\/restapimanualtesting#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/artoftesting.com\/restapimanualtesting"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/restapimanualtesting#primaryimage","url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg","contentUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Rest-API-Manual-Testing-Tools.jpg","width":700,"height":400,"caption":"Rest API Manual Testing Tools"},{"@type":"BreadcrumbList","@id":"https:\/\/artoftesting.com\/restapimanualtesting#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/artoftesting.com\/"},{"@type":"ListItem","position":2,"name":"API Testing","item":"https:\/\/artoftesting.com\/category\/api-testing"},{"@type":"ListItem","position":3,"name":"Tools for Manual Testing of Rest API"}]},{"@type":"WebSite","@id":"https:\/\/artoftesting.com\/#website","url":"https:\/\/artoftesting.com\/","name":"ArtOfTesting","description":"A Beginners Guide to Testing","publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/artoftesting.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/artoftesting.com\/#organization","name":"ArtOfTesting","url":"https:\/\/artoftesting.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/","url":"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png","contentUrl":"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png","width":400,"height":60,"caption":"ArtOfTesting"},"image":{"@id":"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/artoftesting","https:\/\/x.com\/theartoftesting","https:\/\/www.linkedin.com\/groups\/4797819\/","https:\/\/in.pinterest.com\/artoftesting\/","https:\/\/www.youtube.com\/channel\/UCQ9PUVenvvyrUdDQ9yKn31Q"]},{"@type":"Person","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5","name":"Kuldeep Rana","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g","caption":"Kuldeep Rana"},"description":"Kuldeep is the founder and lead author of ArtOfTesting. He is skilled in test automation, performance testing, big data, and CI-CD. He brings his decade of experience to his current role where he is dedicated to educating the QA professionals."}]}},"_links":{"self":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/966","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/comments?post=966"}],"version-history":[{"count":0,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/966\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media\/1696"}],"wp:attachment":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media?parent=966"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/categories?post=966"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/tags?post=966"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}