{"id":16431,"date":"2019-11-13T17:32:01","date_gmt":"2019-11-13T17:32:01","guid":{"rendered":"https:\/\/applitools.com\/blog\/?p=6431"},"modified":"2023-01-26T12:14:09","modified_gmt":"2023-01-26T20:14:09","slug":"validating-multiple-variations","status":"publish","type":"post","link":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/","title":{"rendered":"A\/B Testing: Validating Multiple Variations"},"content":{"rendered":"<p>When you have multiple variations of your app, how do you automate the process to validate each variation?<\/p>\n<p>A\/B testing is a technique used to compare multiple experimental variations of the same application to determine which one is more effective with users. You typically run A\/B tests to get statistically valid measures of effectiveness. But, do you know why one version is better than the other? It could be that one contains a defect.<\/p>\n<p><!--more-->Let&#8217;s say we have two variations \u2013 Variation A and Variation B; and Variation B did much better than Variation A. We&#8217;d assume that&#8217;s because our users really liked Variation B.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-6432\" src=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/ab_testing_applitools-1024x683.jpg\" alt=\"\" width=\"640\" height=\"427\"><\/p>\n<p>But what if Variation A had a serious bug that prevented many users from converting?<\/p>\n<p>The problem is that many teams don&#8217;t automate tests to validate multiple variations because it&#8217;s &#8220;throw away&#8221; code. You&#8217;re not entirely sure which variation you&#8217;ll get each time the test runs.<\/p>\n<p>And if you did write test automation, you may need a bunch of conditional logic in your test code to handle both variations.<\/p>\n<p>What if instead of writing and maintaining all of this code, you used visual testing instead? Would that make things easier?<\/p>\n<p>Yes, it certainly would! You could write a single test, and instead of coding all of the differences between the two variations, you could simply do the visual check and provide photos of both variations.&nbsp; That way, if either one of the variations comes up and there are no bugs, the test will pass. Visual testing simplifies the task of validating multiple variations of your application.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-6433\" src=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/abtesting_applitools_4-1024x784.jpg\" alt=\"\" width=\"640\" height=\"490\"><\/p>\n<p>&nbsp;<\/p>\n<h3>Let&#8217;s try this on a real site.<\/h3>\n<p>Here&#8217;s <a href=\"https:\/\/abtestautomation.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">a website that has two variations.<\/a><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-6436\" src=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/abtesting_variations.png\" alt=\"\" width=\"700\" height=\"700\"><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>There are differences in color as well as structure. If we wanted to automate this using visual testing, we could do so and cover both variations. Let&#8217;s look at the code.<\/p>\n<p><script src=\"https:\/\/gist.github.com\/angiejones\/7a0aae60b8191cae322cebe2453f1e1d.js\"><\/script><\/p>\n<p>I have one test here which is using Applitools Eyes to handle the A\/B test variations.<\/p>\n<ul>\n<li>On line 27, I open Eyes just as I normally would do<\/li>\n<li>Because the page is pretty long, I make a call to capture the full page screenshot on line 28<\/li>\n<li>There&#8217;s also a sticky header that is visible even when scrolling, so to avoid that being captured in our baseline image when scrolling, I set the stitch mode on line 29<\/li>\n<li>Then, the magic happens on line 30 with the&nbsp;<strong><em>checkWindow<\/em><\/strong><em>&nbsp;<\/em>call which will take the screenshot<\/li>\n<li>Finally, I close Eyes on line 31<\/li>\n<\/ul>\n<p>After running this test, the baseline image (which is Variation B) is saved in the Applitools dashboard. However, if I run this again, chances are that Variation A will be displayed, and in that event my visual check will fail because the site looks different.<\/p>\n<h3>Setting Up the Variation<\/h3>\n<p>In the dashboard, we see the failure which is comparing Variation A with Variation B. We want to tell Applitools that both of these are valid options.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-6444\" src=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/variation_differences-939x1024.jpg\" alt=\"\" width=\"640\" height=\"698\"><\/p>\n<p>&nbsp;<\/p>\n<p>To do so, I click the A\/B button which will open the <a href=\"https:\/\/applitools.com\/docs\/features\/baseline-variations.html\">Variations Gallery<\/a>. From here, I click the&nbsp;<strong>Create New<\/strong> button.<\/p>\n<p><a href=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/variation_gallery.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-6445 size-full\" src=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/variation_gallery.jpg\" alt=\"\" width=\"3345\" height=\"1446\"><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>After clicking, the&nbsp;<strong>Create New<\/strong> button, I&#8217;m prompted to name this new variation and then it is automatically saved in the Variation Gallery. Also, the test is now marked as passed. Now in future regression runs, if either Variation A or Variation B appears (without bugs), the test will still pass.<\/p>\n<p><a href=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/add_variation.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-6446 size-full\" src=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/add_variation.jpg\" alt=\"\" width=\"3360\" height=\"1982\"><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>Another thing we can do is rename the variations. Notice the original variation is named <em>Default. <\/em>By hovering over the variation, we see an option to rename it to Variable B, for example.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-6447\" src=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/rename_variation.jpg\" alt=\"\" width=\"723\" height=\"891\"><\/p>\n<p>&nbsp;<\/p>\n<p>I can also delete a variation. So, if my team decides to remove one of the variations from the product I can simply delete it from the Variation Gallery as well.<\/p>\n<h3>See It In Action!<\/h3>\n<p>Check out the video below to see A\/B baseline variations in action.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<div align=\"center\"><iframe title=\"YouTube Video\" src=\"https:\/\/www.youtube.com\/embed\/pClgWU7RkH4\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/div>\n<h2 id=\"h.n43dffinpj9z\">For More Information<\/h2>\n<ul>\n<li>Read all about <a href=\"https:\/\/applitools.com\/blog\/functional-test-myopia?utm_term=&amp;utm_source=web-referral&amp;utm_medium=blog&amp;utm_content=blog&amp;utm_campaign=&amp;utm_subgroup=\">Functional Test Myopia<\/a><\/li>\n<li>Blog:&nbsp;<a href=\"https:\/\/applitools.com\/blog\/functional-testing-visual-assertions?utm_term=&amp;utm_source=web-referral&amp;utm_medium=blog&amp;utm_content=blog&amp;utm_campaign=&amp;utm_subgroup=\">How Do I Validate Visually?<\/a><\/li>\n<li>Blog: <a href=\"https:\/\/applitools.com\/blog\/inspect-just-changes?utm_term=&amp;utm_source=web-referral&amp;utm_medium=blog&amp;utm_content=blog&amp;utm_campaign=&amp;utm_subgroup=\">Shifts Happen &#8211; Inspect Just The Changes That Matter<\/a><\/li>\n<li>Visit the&nbsp;<a href=\"https:\/\/testautomationu.applitools.com\/automated-visual-testing-a-fast-path-to-test-automation-success\/index.html?utm_term=&amp;utm_source=web-referral&amp;utm_medium=blog&amp;utm_content=tau&amp;utm_campaign=&amp;utm_subgroup=\">Automated Visual Testing Course<\/a>&nbsp;on <a href=\"https:\/\/testautomationu.applitools.com\/login.html?utm_term=&amp;utm_source=web-referral&amp;utm_medium=blog&amp;utm_content=tau&amp;utm_campaign=&amp;utm_subgroup=\">Test Automation University<\/a><\/li>\n<li>Sign up for a <a href=\"http:\/\/www.applitools.com\/free?utm_term=&amp;utm_source=web-referral&amp;utm_medium=blog&amp;utm_content=free-account&amp;utm_campaign=&amp;utm_subgroup=\">free Applitools account<\/a><\/li>\n<li><a href=\"https:\/\/applitools.com\/request-demo?utm_term=&amp;utm_source=web-referral&amp;utm_medium=blog&amp;utm_content=request-a-demo&amp;utm_campaign=&amp;utm_subgroup=\">Request an Applitools Demo<\/a><\/li>\n<li>Visit the&nbsp;<a href=\"https:\/\/applitools.com\/tutorials?utm_term=&amp;utm_source=web-referral&amp;utm_medium=blog&amp;utm_content=tutorial&amp;utm_campaign=&amp;utm_subgroup=\">Applitools Tutorials<\/a><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Many teams don&#8217;t automate tests to validate multiple variations because it&#8217;s &#8220;throw away&#8221; code. You&#8217;re not entirely sure which variation you&#8217;ll get each time the test runs. If you did write test automation, you may need a bunch of conditional logic in your test code to handle both variations. What if instead of writing and maintaining all of this code, you used visual testing instead? Would that make things easier?<\/p>\n","protected":false},"author":31,"featured_media":16452,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10558],"tags":[10199,10061,12758,12688,12690,12686,10262],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>A\/B Testing: Validating Multiple Variations - Automated Visual Testing | Applitools<\/title>\n<meta name=\"description\" content=\"When you A\/B test in production, you may find that validating multiple variations can be tricky. Unless you use Visual AI to test.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A\/B Testing: Validating Multiple Variations\" \/>\n<meta property=\"og:description\" content=\"Many teams don&#039;t automate tests to validate multiple variations because it&#039;s &quot;throw away&quot; code. You&#039;re not entirely sure which variation you&#039;ll get each time the test runs. If you did write test automation, you may need a bunch of conditional logic in your test code to handle both variations. What if instead of writing and maintaining all of this code, you used visual testing instead? Would that make things easier?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/\" \/>\n<meta property=\"og:site_name\" content=\"Automated Visual Testing | Applitools\" \/>\n<meta property=\"article:published_time\" content=\"2019-11-13T17:32:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-26T20:14:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/ab_testing_cover-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"2151\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Angie Jones\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Angie Jones\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/\"},\"author\":{\"name\":\"Angie Jones\",\"@id\":\"https:\/\/applitools.com\/#\/schema\/person\/c4c65af7b9916b1f3dced6a94f49e68e\"},\"headline\":\"A\/B Testing: Validating Multiple Variations\",\"datePublished\":\"2019-11-13T17:32:01+00:00\",\"dateModified\":\"2023-01-26T20:14:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/\"},\"wordCount\":722,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/applitools.com\/#organization\"},\"keywords\":[\"Angie Jones\",\"Functional Testing\",\"Product\",\"Technical Leaders\",\"Test Engineers\",\"Visual Testing Strategies\",\"Visual Testing Tools\"],\"articleSection\":[\"Product\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/\",\"url\":\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/\",\"name\":\"A\/B Testing: Validating Multiple Variations - Automated Visual Testing | Applitools\",\"isPartOf\":{\"@id\":\"https:\/\/applitools.com\/#website\"},\"datePublished\":\"2019-11-13T17:32:01+00:00\",\"dateModified\":\"2023-01-26T20:14:09+00:00\",\"description\":\"When you A\/B test in production, you may find that validating multiple variations can be tricky. Unless you use Visual AI to test.\",\"breadcrumb\":{\"@id\":\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/applitools.com\/blog\/validating-multiple-variations\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/applitools.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Product\",\"item\":\"https:\/\/applitools.com\/blog\/category\/product\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"A\/B Testing: Validating Multiple Variations\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/applitools.com\/#website\",\"url\":\"https:\/\/applitools.com\/\",\"name\":\"Automated Visual Testing | Applitools\",\"description\":\"Applitools delivers the next generation of test automation powered by AI assisted computer vision technology known as Visual AI.\",\"publisher\":{\"@id\":\"https:\/\/applitools.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/applitools.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/applitools.com\/#organization\",\"name\":\"Applitools\",\"url\":\"https:\/\/applitools.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/applitools.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/ewig5qf9cgn.exactdn.com\/wp-content\/uploads\/2020\/03\/applitools.png?strip=all&lossy=1&ssl=1\",\"contentUrl\":\"https:\/\/ewig5qf9cgn.exactdn.com\/wp-content\/uploads\/2020\/03\/applitools.png?strip=all&lossy=1&ssl=1\",\"width\":156,\"height\":28,\"caption\":\"Applitools\"},\"image\":{\"@id\":\"https:\/\/applitools.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/applitools.com\/#\/schema\/person\/c4c65af7b9916b1f3dced6a94f49e68e\",\"name\":\"Angie Jones\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/applitools.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/60864923503620d0b54e2493ef75b9d8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/60864923503620d0b54e2493ef75b9d8?s=96&d=mm&r=g\",\"caption\":\"Angie Jones\"},\"url\":\"https:\/\/applitools.com\/blog\/author\/angiejones\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"A\/B Testing: Validating Multiple Variations - Automated Visual Testing | Applitools","description":"When you A\/B test in production, you may find that validating multiple variations can be tricky. Unless you use Visual AI to test.","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:\/\/applitools.com\/blog\/validating-multiple-variations\/","og_locale":"en_US","og_type":"article","og_title":"A\/B Testing: Validating Multiple Variations","og_description":"Many teams don't automate tests to validate multiple variations because it's \"throw away\" code. You're not entirely sure which variation you'll get each time the test runs. If you did write test automation, you may need a bunch of conditional logic in your test code to handle both variations. What if instead of writing and maintaining all of this code, you used visual testing instead? Would that make things easier?","og_url":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/","og_site_name":"Automated Visual Testing | Applitools","article_published_time":"2019-11-13T17:32:01+00:00","article_modified_time":"2023-01-26T20:14:09+00:00","og_image":[{"width":2560,"height":2151,"url":"https:\/\/applitools.com\/wp-content\/uploads\/2019\/10\/ab_testing_cover-scaled.jpg","type":"image\/jpeg"}],"author":"Angie Jones","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Angie Jones","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/#article","isPartOf":{"@id":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/"},"author":{"name":"Angie Jones","@id":"https:\/\/applitools.com\/#\/schema\/person\/c4c65af7b9916b1f3dced6a94f49e68e"},"headline":"A\/B Testing: Validating Multiple Variations","datePublished":"2019-11-13T17:32:01+00:00","dateModified":"2023-01-26T20:14:09+00:00","mainEntityOfPage":{"@id":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/"},"wordCount":722,"commentCount":0,"publisher":{"@id":"https:\/\/applitools.com\/#organization"},"keywords":["Angie Jones","Functional Testing","Product","Technical Leaders","Test Engineers","Visual Testing Strategies","Visual Testing Tools"],"articleSection":["Product"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/applitools.com\/blog\/validating-multiple-variations\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/","url":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/","name":"A\/B Testing: Validating Multiple Variations - Automated Visual Testing | Applitools","isPartOf":{"@id":"https:\/\/applitools.com\/#website"},"datePublished":"2019-11-13T17:32:01+00:00","dateModified":"2023-01-26T20:14:09+00:00","description":"When you A\/B test in production, you may find that validating multiple variations can be tricky. Unless you use Visual AI to test.","breadcrumb":{"@id":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/applitools.com\/blog\/validating-multiple-variations\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/applitools.com\/blog\/validating-multiple-variations\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/applitools.com\/"},{"@type":"ListItem","position":2,"name":"Product","item":"https:\/\/applitools.com\/blog\/category\/product\/"},{"@type":"ListItem","position":3,"name":"A\/B Testing: Validating Multiple Variations"}]},{"@type":"WebSite","@id":"https:\/\/applitools.com\/#website","url":"https:\/\/applitools.com\/","name":"Automated Visual Testing | Applitools","description":"Applitools delivers the next generation of test automation powered by AI assisted computer vision technology known as Visual AI.","publisher":{"@id":"https:\/\/applitools.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/applitools.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/applitools.com\/#organization","name":"Applitools","url":"https:\/\/applitools.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/applitools.com\/#\/schema\/logo\/image\/","url":"https:\/\/ewig5qf9cgn.exactdn.com\/wp-content\/uploads\/2020\/03\/applitools.png?strip=all&lossy=1&ssl=1","contentUrl":"https:\/\/ewig5qf9cgn.exactdn.com\/wp-content\/uploads\/2020\/03\/applitools.png?strip=all&lossy=1&ssl=1","width":156,"height":28,"caption":"Applitools"},"image":{"@id":"https:\/\/applitools.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/applitools.com\/#\/schema\/person\/c4c65af7b9916b1f3dced6a94f49e68e","name":"Angie Jones","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/applitools.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/60864923503620d0b54e2493ef75b9d8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/60864923503620d0b54e2493ef75b9d8?s=96&d=mm&r=g","caption":"Angie Jones"},"url":"https:\/\/applitools.com\/blog\/author\/angiejones\/"}]}},"_links":{"self":[{"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/posts\/16431"}],"collection":[{"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/users\/31"}],"replies":[{"embeddable":true,"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/comments?post=16431"}],"version-history":[{"count":2,"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/posts\/16431\/revisions"}],"predecessor-version":[{"id":46219,"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/posts\/16431\/revisions\/46219"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/media\/16452"}],"wp:attachment":[{"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/media?parent=16431"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/categories?post=16431"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/applitools.com\/wp-json\/wp\/v2\/tags?post=16431"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}