{"id":2633,"date":"2020-02-21T12:28:10","date_gmt":"2020-02-21T06:58:10","guid":{"rendered":"http:\/\/artoftesting.com\/?p=2633"},"modified":"2023-04-29T21:04:17","modified_gmt":"2023-04-29T15:34:17","slug":"grey-box-testing","status":"publish","type":"post","link":"https:\/\/artoftesting.com\/grey-box-testing","title":{"rendered":"Grey Box Testing"},"content":{"rendered":"\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\/grey-box-testing\/#What_is_Grey_Box_Testing\" title=\"What is Grey Box Testing?\">What is Grey Box Testing?<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/artoftesting.com\/grey-box-testing\/#Example\" title=\"Example\">Example<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/artoftesting.com\/grey-box-testing\/#Strategy_for_Grey_Box_Testing\" title=\"Strategy for Grey Box Testing\">Strategy for Grey Box Testing<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/artoftesting.com\/grey-box-testing\/#Techniques_used_for_Grey_Box_Testing\" title=\"Techniques used for Grey Box Testing\">Techniques used for Grey Box Testing<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/artoftesting.com\/grey-box-testing\/#Advantages_of_Grey_Box_Testing\" title=\"Advantages of Grey Box Testing\">Advantages of Grey Box Testing<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/artoftesting.com\/grey-box-testing\/#Disadvantages_of_Grey_Box_Testing\" title=\"Disadvantages of Grey Box Testing\">Disadvantages of Grey Box Testing<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/artoftesting.com\/grey-box-testing\/#Conclusion\" title=\"Conclusion\">Conclusion<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"What_is_Grey_Box_Testing\"><\/span><strong>What is Grey Box Testing?<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Grey box or Gray box testing is a type of testing in which testing is carried out based on the partial knowledge of the underlying design and implementation of the system.  <\/p>\n<\/blockquote>\n\n\n\n<p>It is a combination of <a href=\"http:\/\/artoftesting.com\/black-box-testing\">black box<\/a> and <a href=\"http:\/\/artoftesting.com\/white-box-testing\">white box testing<\/a> techniques. In a black-box testing technique, testers test the functionalities of the system and are unaware of the internal structure of the system. While in white box testing, testers test the internal code structure of the system. <br><br>Grey box testing is mainly used in <a href=\"http:\/\/artoftesting.com\/integration-testing\">integration testing<\/a> and penetration testing. Integration testing is the testing of individual modules of the system as a group. While penetration testing is done by reproducing various scenarios that can cause malicious hacking attempts and finding system vulnerabilities against such attacks.<br><br><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Example\"><\/span><strong>Example<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Let&#8217;s take an example of a software application on which the tester has access to the database. The tester can check all the data inserted in the database along with the data type of each field of different tables.<br><br><br>Now based on the understanding of the database fields &#8211; the type of data they can hold and the range of values they can contain, the tester can design the positive and negative test cases keeping these things in mind. In this way, with access to the database, the tester can create better test cases and hence, perform better testing.<br><br><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Strategy_for_Grey_Box_Testing\"><\/span><strong>Strategy for Grey Box Testing<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>First, based on the white box testing method, testers study various design documents and understand the basic internal mechanism of the application. In grey box testing, as stated earlier, complete access to source code is not required by the tester but limited knowledge of internal working is enough.<br><br>Testers design test cases based on his\/her knowledge of internal data structures, algorithms, UML diagrams, system architecture, etc.<br><br>Once test cases have been designed, testers execute them using the black-box testing method.<br><br><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Techniques_used_for_Grey_Box_Testing\"><\/span><strong>Techniques used for Grey Box Testing<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Matrix Testing \u2013 <\/strong>In matrix testing, all the variables of the application are defined by the developers. Each of these variables has business and technical risks associated with them. Matrix testing helps in identifying variables that are unused.<br><br><\/li>\n\n\n\n<li><strong>Regression Testing \u2013 <\/strong>Regression testing is carried out to make sure any new change or update has not affected system functionalities. It is also done to verify that any bug fixes have not affected other untouched functionalities of the system adversely. As regression testing is done after every change and every major bug fix, it involves the use of automation tools for a quick check.<br><br><\/li>\n\n\n\n<li><strong>Orthogonal Array Testing \u2013 <\/strong>It is a black-box testing technique. It is useful in testing scenarios where the input set is relatively small but too large to accommodate <a href=\"http:\/\/artoftesting.com\/exhaustive-testing\">exhaustive testing<\/a> of every possible input combination. This technique is useful in finding region faults (single mode faults, double mode faults, multimode faults). Region faults occur due to faulty logic in the software component. Orthogonal array testing provides maximum test coverage with a relatively small number of test cases.<br><br><\/li>\n\n\n\n<li><strong>Pattern Testing \u2013<\/strong> In pattern testing, analysis of previous defects is done, and sources of these defects are found out in the code. This testing is helpful in designing future test cases due to known defect areas.<br><br><br><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Advantages_of_Grey_Box_Testing\"><\/span><strong>Advantages of Grey Box Testing<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>As grey box testing is a combination of black box and white box testing, it provides the best of both worlds i.e. benefits of both the testing techniques.<br><br><\/li>\n\n\n\n<li>Knowledge of the internal mechanisms of the system helps the tester to design test scenarios more extensively.<br><br><\/li>\n\n\n\n<li>For grey box testing, functional specifications and other design documents are used. It does not need the use of the source code which helps in keeping the source code safe from any disruptive changes.<br><br><\/li>\n\n\n\n<li>It helps in keeping testers and developers separate, which reduces any disagreement between them.<br><br><\/li>\n\n\n\n<li>Even with a partial understanding of the code, testers conduct grey box testing from the end user\u2019s perspective. This helps in identifying any issues that the developers might have missed during unit testing.<br><br><\/li>\n\n\n\n<li>It results in the instant fixing of the issues as a tester can change the partially available code to check for the results.<br><br><\/li>\n\n\n\n<li> Even without high-level programming skills, the testers can perform this testing.<br><br><\/li>\n\n\n\n<li> It is platform and language-independent.<br><br><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Disadvantages_of_Grey_Box_Testing\"><\/span><strong>Disadvantages of Grey Box Testing<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>While doing grey box testing, testers do not have access to the source code, so it becomes difficult to get complete code path coverage and testers might fail to notice some critical vulnerabilities.<br><br><\/li>\n\n\n\n<li>Algorithm testing is not possible as accessing the complete logic of the algorithms is not possible.&nbsp;<br><br><\/li>\n\n\n\n<li>If a developer has already executed a test case, running the same test case in grey box testing may result in redundancy.<br><br><\/li>\n\n\n\n<li>It is usually not suitable for distributed systems.<br><br><br><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span><strong>Conclusion<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Grey box testing technique is a blend of both white box and black box testing techniques where the tester has partial knowledge of the data structures and algorithms. It helps in improving the overall quality of the software and it is mainly used for testing web applications.<br><br>We hope that this tutorial was useful in understating the grey box testing method.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is Grey Box Testing? Grey box or Gray box testing is a type of testing in which testing is carried out based on the partial knowledge of the underlying design and implementation of the system. It is a combination of black box and white box testing techniques. In a black-box testing technique, testers test &#8230; <a title=\"Grey Box Testing\" class=\"read-more\" href=\"https:\/\/artoftesting.com\/grey-box-testing\" aria-label=\"Read more about Grey Box Testing\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":2634,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-2633","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-manual-testing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Grey Box Testing - Techniques, Advantages &amp; Disadvantages<\/title>\n<meta name=\"description\" content=\"Gray box testing is a technique of testing a software application where the tester has limited knowledge of the underlying design and implementation of the system.\" \/>\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\/grey-box-testing\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Grey Box Testing - Techniques, Advantages &amp; Disadvantages\" \/>\n<meta property=\"og:description\" content=\"Gray box testing is a technique of testing a software application where the tester has limited knowledge of the underlying design and implementation of the system.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/artoftesting.com\/grey-box-testing\" \/>\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=\"2020-02-21T06:58:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-29T15:34:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"728\" \/>\n\t<meta property=\"og:image:height\" content=\"416\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing#article\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing\"},\"author\":{\"name\":\"Kuldeep Rana\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\"},\"headline\":\"Grey Box Testing\",\"datePublished\":\"2020-02-21T06:58:10+00:00\",\"dateModified\":\"2023-04-29T15:34:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing\"},\"wordCount\":859,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg\",\"articleSection\":[\"Manual Testing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/artoftesting.com\/grey-box-testing#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing\",\"url\":\"https:\/\/artoftesting.com\/grey-box-testing\",\"name\":\"Grey Box Testing - Techniques, Advantages & Disadvantages\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing#primaryimage\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg\",\"datePublished\":\"2020-02-21T06:58:10+00:00\",\"dateModified\":\"2023-04-29T15:34:17+00:00\",\"description\":\"Gray box testing is a technique of testing a software application where the tester has limited knowledge of the underlying design and implementation of the system.\",\"breadcrumb\":{\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/artoftesting.com\/grey-box-testing\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing#primaryimage\",\"url\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg\",\"contentUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg\",\"width\":728,\"height\":416,\"caption\":\"Grey Box Testing\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/artoftesting.com\/grey-box-testing#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/artoftesting.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Manual Testing\",\"item\":\"https:\/\/artoftesting.com\/category\/manual-testing\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Grey Box Testing\"}]},{\"@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":"Grey Box Testing - Techniques, Advantages & Disadvantages","description":"Gray box testing is a technique of testing a software application where the tester has limited knowledge of the underlying design and implementation of the system.","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\/grey-box-testing","og_locale":"en_US","og_type":"article","og_title":"Grey Box Testing - Techniques, Advantages & Disadvantages","og_description":"Gray box testing is a technique of testing a software application where the tester has limited knowledge of the underlying design and implementation of the system.","og_url":"https:\/\/artoftesting.com\/grey-box-testing","og_site_name":"ArtOfTesting","article_publisher":"https:\/\/facebook.com\/artoftesting","article_published_time":"2020-02-21T06:58:10+00:00","article_modified_time":"2023-04-29T15:34:17+00:00","og_image":[{"width":728,"height":416,"url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/artoftesting.com\/grey-box-testing#article","isPartOf":{"@id":"https:\/\/artoftesting.com\/grey-box-testing"},"author":{"name":"Kuldeep Rana","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5"},"headline":"Grey Box Testing","datePublished":"2020-02-21T06:58:10+00:00","dateModified":"2023-04-29T15:34:17+00:00","mainEntityOfPage":{"@id":"https:\/\/artoftesting.com\/grey-box-testing"},"wordCount":859,"commentCount":0,"publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"image":{"@id":"https:\/\/artoftesting.com\/grey-box-testing#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg","articleSection":["Manual Testing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/artoftesting.com\/grey-box-testing#respond"]}]},{"@type":"WebPage","@id":"https:\/\/artoftesting.com\/grey-box-testing","url":"https:\/\/artoftesting.com\/grey-box-testing","name":"Grey Box Testing - Techniques, Advantages & Disadvantages","isPartOf":{"@id":"https:\/\/artoftesting.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/artoftesting.com\/grey-box-testing#primaryimage"},"image":{"@id":"https:\/\/artoftesting.com\/grey-box-testing#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg","datePublished":"2020-02-21T06:58:10+00:00","dateModified":"2023-04-29T15:34:17+00:00","description":"Gray box testing is a technique of testing a software application where the tester has limited knowledge of the underlying design and implementation of the system.","breadcrumb":{"@id":"https:\/\/artoftesting.com\/grey-box-testing#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/artoftesting.com\/grey-box-testing"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/grey-box-testing#primaryimage","url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg","contentUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/02\/grey-box.jpg","width":728,"height":416,"caption":"Grey Box Testing"},{"@type":"BreadcrumbList","@id":"https:\/\/artoftesting.com\/grey-box-testing#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/artoftesting.com\/"},{"@type":"ListItem","position":2,"name":"Manual Testing","item":"https:\/\/artoftesting.com\/category\/manual-testing"},{"@type":"ListItem","position":3,"name":"Grey Box Testing"}]},{"@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\/2633","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=2633"}],"version-history":[{"count":3,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/2633\/revisions"}],"predecessor-version":[{"id":6998,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/2633\/revisions\/6998"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media\/2634"}],"wp:attachment":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media?parent=2633"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/categories?post=2633"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/tags?post=2633"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}