{"id":218528,"date":"2019-12-31T15:05:48","date_gmt":"2019-12-31T15:05:48","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=218528"},"modified":"2020-01-03T14:24:32","modified_gmt":"2020-01-03T14:24:32","slug":"b-box-testing","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/b-box-testing\/","title":{"rendered":"B-Box Testing"},"content":{"rendered":"\n<p><strong>Overview:<\/strong><\/p>\n\n\n\n<p>In the world of technology, Functional testing is a very essential part of every software product when it comes to deliver Quality to the End-Users. Verifying the functionality against the Requirement Specifications is termed as Black Box Testing where the main concern is about to test the behavior of software, unlike White Box Testing which involves testing of source code that is usually done at the unit level.<\/p>\n\n\n\n<p><strong>Black Box Testing<\/strong> is also known as opaque, functional or behavioral-based testing which can be applied to every level of testing, such as Unit, Integration, System and User Acceptance Testing. Unlike white box testing, it requires no programming skills as the Test Engineers Validates the software functionality without looking into the internal code structure. Click here to get a detail view of <a href=\"https:\/\/webkul.com\/blog\/vv-testing\/\">Verification &amp; Validation<\/a>.<\/p>\n\n\n\n<p>In this blog, we will highlight some major techniques of Black Box Testing:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Equivalence Class Partitioning:<\/strong><\/h4>\n\n\n\n<p>In equivalence partitioning, input values are divided into certain groups that are expected to exhibit similar behavior. Each and every condition in the particular partition works as same as others. Moreover, it reduces the number of test cases from infinite to finite and is applicable to all the levels of testing.<\/p>\n\n\n\n<p><strong>For example:<\/strong><\/p>\n\n\n\n<p>Suppose, we are creating an account for Opencart Site, <\/p>\n\n\n\n<p>so it asks for multiple information, such as First Name, Last Name, Contact number, etc.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"947\" height=\"566\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png\" alt=\"webkul88\" class=\"wp-image-218556\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png 947w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88-300x179.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88-250x149.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88-768x459.png 768w\" sizes=\"(max-width: 947px) 100vw, 947px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Let\u2019s assume  Contact Number as one of the fields which accept 10 digits number only. So we can partition it into valid(10 digits) ie: 9876543210 &amp; invalid(9&amp;11 digits) ie: 987654321 and 98765432100.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Boundary Value Analysis(BVA):<\/strong><\/h4>\n\n\n\n<p>In this technique, we analyze the boundaries of valid and invalid partitions, as the edge of each equivalence partitions is more likely to throw invalid output than the values within the partitions. Every partition has its maximum and minimum values &amp; these values are set as its boundaries. BVA is also applicable to all levels of testing.<\/p>\n\n\n\n<p><strong>For example:<\/strong><\/p>\n\n\n\n<p>Taking the above example into consideration, assume the First Name accepts 6-18 characters only.<\/p>\n\n\n\n<p>Analyze the boundaries ie:  <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>min-1 = 5(Invalid Input)<\/li><li>max+1 = 19(Invalid Input)<\/li><li>&gt;5 to &lt;19 (Valid Input)<\/li><\/ul>\n\n\n\n<p>Thus, <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Minimum boundary value is 6<\/li><li>Maximum boundary value is 18<\/li><li>Valid input values are (6,10,14,18)<\/li><li>Invalid input values are 5 &amp; 19<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Decision Table:<\/strong><\/h4>\n\n\n\n<p>This design technique is also known as Cause-Effect Table. It is more likely to work on functionalities which has the if-else logical relationship between inputs. Here, we analyze inputs as conditions &amp; output as some actions.<\/p>\n\n\n\n<p><strong>For Example:<\/strong><\/p>\n\n\n\n<p>As per different test cases results, we can maintain the Decision Table like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"442\" height=\"142\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul10.png\" alt=\"webkul10\" class=\"wp-image-218623\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul10.png 442w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul10-300x96.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul10-250x80.png 250w\" sizes=\"(max-width: 442px) 100vw, 442px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>State Transition<\/strong>:<\/h4>\n\n\n\n<p>Using State Transition technique, we analyze the sequence of transition and state or events by applying the same input. The whole set of test cases will have the traversal of the expected output values and all states.<\/p>\n\n\n\n<p><strong>For example:<\/strong><\/p>\n\n\n\n<p>It is so obvious that when we logged in, we are redirected to the Home page which also means that we have entered username &amp; password correctly. Just imagine, what will happen if login credentials are invalid. Nothing much but we\u2019ll get few more attempts to log-in.<\/p>\n\n\n\n<p>Suppose, we have only 3 attempts &amp; we have failed in the previous 2 attempts then, it will give warning message \u201dIncorrect username &amp; password\u201d.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" width=\"480\" height=\"466\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul6.png\" alt=\"webkul6\" class=\"wp-image-218596\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul6.png 480w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul6-300x291.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul6-250x243.png 250w\" sizes=\"(max-width: 480px) 100vw, 480px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Or else a google re-captcha will appear, for security reason after you have failed in all the 3 attempts.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"523\" height=\"491\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul7.png\" alt=\"webkul7\" class=\"wp-image-218600\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul7.png 523w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul7-300x282.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul7-250x235.png 250w\" sizes=\"(max-width: 523px) 100vw, 523px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>That\u2019s all about <strong>Black Box Testing<\/strong>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>                                                  <\/p>\n\n\n\n<p>                                                   <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview: In the world of technology, Functional testing is a very essential part of every software product when it comes to deliver Quality to the End-Users. Verifying the functionality against the Requirement Specifications is termed as Black Box Testing where the main concern is about to test the behavior of software, unlike White Box Testing <a href=\"https:\/\/webkul.com\/blog\/b-box-testing\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":227,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-218528","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>B-Box Testing - Webkul Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/b-box-testing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"B-Box Testing - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Overview: In the world of technology, Functional testing is a very essential part of every software product when it comes to deliver Quality to the End-Users. Verifying the functionality against the Requirement Specifications is termed as Black Box Testing where the main concern is about to test the behavior of software, unlike White Box Testing [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/b-box-testing\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-31T15:05:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-01-03T14:24:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png\" \/>\n<meta name=\"author\" content=\"Shipra Verma\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shipra Verma\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/\"},\"author\":{\"name\":\"Shipra Verma\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/2b422007c2470830535439fc613b7252\"},\"headline\":\"B-Box Testing\",\"datePublished\":\"2019-12-31T15:05:48+00:00\",\"dateModified\":\"2020-01-03T14:24:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/\"},\"wordCount\":560,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/b-box-testing\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/\",\"url\":\"https:\/\/webkul.com\/blog\/b-box-testing\/\",\"name\":\"B-Box Testing - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png\",\"datePublished\":\"2019-12-31T15:05:48+00:00\",\"dateModified\":\"2020-01-03T14:24:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/b-box-testing\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png\",\"width\":947,\"height\":566,\"caption\":\"webkul88\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/b-box-testing\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"B-Box Testing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/2b422007c2470830535439fc613b7252\",\"name\":\"Shipra Verma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/bfe28b42a794394714c8f8e92c197591f09356f64daa41a75f2afd87b8665151?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/bfe28b42a794394714c8f8e92c197591f09356f64daa41a75f2afd87b8665151?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Shipra Verma\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/shipraverma-tester017\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"B-Box Testing - Webkul Blog","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:\/\/webkul.com\/blog\/b-box-testing\/","og_locale":"en_US","og_type":"article","og_title":"B-Box Testing - Webkul Blog","og_description":"Overview: In the world of technology, Functional testing is a very essential part of every software product when it comes to deliver Quality to the End-Users. Verifying the functionality against the Requirement Specifications is termed as Black Box Testing where the main concern is about to test the behavior of software, unlike White Box Testing [...]","og_url":"https:\/\/webkul.com\/blog\/b-box-testing\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2019-12-31T15:05:48+00:00","article_modified_time":"2020-01-03T14:24:32+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png","type":"","width":"","height":""}],"author":"Shipra Verma","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Shipra Verma","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/b-box-testing\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/b-box-testing\/"},"author":{"name":"Shipra Verma","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/2b422007c2470830535439fc613b7252"},"headline":"B-Box Testing","datePublished":"2019-12-31T15:05:48+00:00","dateModified":"2020-01-03T14:24:32+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/b-box-testing\/"},"wordCount":560,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/b-box-testing\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/b-box-testing\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/b-box-testing\/","url":"https:\/\/webkul.com\/blog\/b-box-testing\/","name":"B-Box Testing - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/b-box-testing\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/b-box-testing\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png","datePublished":"2019-12-31T15:05:48+00:00","dateModified":"2020-01-03T14:24:32+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/b-box-testing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/b-box-testing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/b-box-testing\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/12\/webkul88.png","width":947,"height":566,"caption":"webkul88"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/b-box-testing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"B-Box Testing"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/2b422007c2470830535439fc613b7252","name":"Shipra Verma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/bfe28b42a794394714c8f8e92c197591f09356f64daa41a75f2afd87b8665151?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bfe28b42a794394714c8f8e92c197591f09356f64daa41a75f2afd87b8665151?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Shipra Verma"},"url":"https:\/\/webkul.com\/blog\/author\/shipraverma-tester017\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/218528","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/227"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=218528"}],"version-history":[{"count":7,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/218528\/revisions"}],"predecessor-version":[{"id":219670,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/218528\/revisions\/219670"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=218528"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=218528"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=218528"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}