{"id":702,"date":"2019-12-05T13:58:25","date_gmt":"2019-12-05T08:28:25","guid":{"rendered":"http:\/\/http:\/\/artoftesting.com\/\/?p=702"},"modified":"2023-06-14T15:36:41","modified_gmt":"2023-06-14T10:06:41","slug":"navigate-back-forward-in-browser-selenium-webdriver-java","status":"publish","type":"post","link":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java","title":{"rendered":"Browser Navigate Back and Forward in Selenium"},"content":{"rendered":"\n<p>During automation, we are at times required to move back to the previous page or move forward to the next page in browser history. In this post, we will learn to perform these operations using driver.navigate command.<br><\/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\/navigate-back-forward-in-browser-selenium-webdriver-java\/#Navigate_back_in_Selenium\" title=\"Navigate back in Selenium\">Navigate back in Selenium<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\/#Navigate_forward_in_Browser_History\" title=\"Navigate forward in Browser History\">Navigate forward in Browser History<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\/#Sample_code\" title=\"Sample code\">Sample code<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Navigate_back_in_Selenium\"><\/span>Navigate back in Selenium<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; gutter: false; title: ; notranslate\" title=\"\">\ndriver.navigate().back();\n<\/pre><\/div>\n\n\n<p><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Navigate_forward_in_Browser_History\"><\/span><strong>Navigate forward in Browser History<\/strong> <span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; gutter: false; title: ; notranslate\" title=\"\">\ndriver.navigate().forward();\n<\/pre><\/div>\n\n\n<p><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Sample_code\"><\/span><strong>Sample code<\/strong> <span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\npublic static void main(String&#x5B;] args) throws InterruptedException{\n\n\t\/\/Setting system property required for launching chrome browser\n\tSystem.setProperty(&quot;webdriver.chrome.driver&quot;, &quot;driverExecutables\\\\chromedriver.exe&quot;);\n\n\t\/\/Launching chrome browser\n\tWebDriver driver = new ChromeDriver();\n\n\t\/\/Navigating to the desired website\n\tdriver.get(&quot;http:\/\/artoftesting.com\/sampleSiteForSelenium&quot;);\n\n\t\/\/Used for demo purpose only, not required\n\tThread.sleep(4000);\n\n\t\/\/Clicking a link\n\tWebElement artOfTestingLogo = driver.findElement(By.cssSelector(&quot;div.navbar-header&quot;));\n\tartOfTestingLogo.click();\n\n\t\/\/Navigating back in browser \n\tdriver.navigate().back();\n\n\t\/\/Used for demo purpose only, not required\n\tThread.sleep(4000);\n\n\t\/\/Navigating forward in browser \n\tdriver.navigate().forward();\n\n}\n<\/pre><\/div>\n\n\n<p> <br>That\u2019s all we have in this post, comment below if you have any queries. Don\u2019t forget to check our <em>complete selenium tutorial here. <\/em><br><\/p>\n\n\n\n<p><a href=\"http:\/\/artoftesting.com\/selenium-tutorial\"><strong>Selenium Webdriver with Java Tutorial<\/strong><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>During automation, we are at times required to move back to the previous page or move forward to the next page in browser history. In this post, we will learn to perform these operations using driver.navigate command. Navigate back in Selenium Navigate forward in Browser History Sample code That&rsquo;s all we have in this post, &#8230; <a title=\"Browser Navigate Back and Forward in Selenium\" class=\"read-more\" href=\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\" aria-label=\"Read more about Browser Navigate Back and Forward in Selenium\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1617,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-702","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-selenium"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Navigate Back and Forward in Browser using Selenium<\/title>\n<meta name=\"description\" content=\"Driver navigation commands to move to previous page or navigate back and forward in browser using Selenium Webdriver with java.\" \/>\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\/navigate-back-forward-in-browser-selenium-webdriver-java\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Navigate Back and Forward in Browser using Selenium\" \/>\n<meta property=\"og:description\" content=\"Driver navigation commands to move to previous page or navigate back and forward in browser using Selenium Webdriver with java.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\" \/>\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-05T08:28:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-14T10:06:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#article\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\"},\"author\":{\"name\":\"Kuldeep Rana\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\"},\"headline\":\"Browser Navigate Back and Forward in Selenium\",\"datePublished\":\"2019-12-05T08:28:25+00:00\",\"dateModified\":\"2023-06-14T10:06:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\"},\"wordCount\":86,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.jpg\",\"articleSection\":[\"Selenium\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\",\"url\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\",\"name\":\"Navigate Back and Forward in Browser using Selenium\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#primaryimage\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.jpg\",\"datePublished\":\"2019-12-05T08:28:25+00:00\",\"dateModified\":\"2023-06-14T10:06:41+00:00\",\"description\":\"Driver navigation commands to move to previous page or navigate back and forward in browser using Selenium Webdriver with java.\",\"breadcrumb\":{\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#primaryimage\",\"url\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.jpg\",\"contentUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.jpg\",\"width\":700,\"height\":400,\"caption\":\"navigate back and forward in the browser history\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/artoftesting.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automation Testing\",\"item\":\"https:\/\/artoftesting.com\/category\/automation-testing\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Selenium\",\"item\":\"https:\/\/artoftesting.com\/category\/automation-testing\/selenium\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Browser Navigate Back and Forward in Selenium\"}]},{\"@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":"Navigate Back and Forward in Browser using Selenium","description":"Driver navigation commands to move to previous page or navigate back and forward in browser using Selenium Webdriver with java.","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\/navigate-back-forward-in-browser-selenium-webdriver-java","og_locale":"en_US","og_type":"article","og_title":"Navigate Back and Forward in Browser using Selenium","og_description":"Driver navigation commands to move to previous page or navigate back and forward in browser using Selenium Webdriver with java.","og_url":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java","og_site_name":"ArtOfTesting","article_publisher":"https:\/\/facebook.com\/artoftesting","article_published_time":"2019-12-05T08:28:25+00:00","article_modified_time":"2023-06-14T10:06:41+00:00","og_image":[{"width":700,"height":400,"url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#article","isPartOf":{"@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java"},"author":{"name":"Kuldeep Rana","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5"},"headline":"Browser Navigate Back and Forward in Selenium","datePublished":"2019-12-05T08:28:25+00:00","dateModified":"2023-06-14T10:06:41+00:00","mainEntityOfPage":{"@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java"},"wordCount":86,"commentCount":0,"publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"image":{"@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.jpg","articleSection":["Selenium"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#respond"]}]},{"@type":"WebPage","@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java","url":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java","name":"Navigate Back and Forward in Browser using Selenium","isPartOf":{"@id":"https:\/\/artoftesting.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#primaryimage"},"image":{"@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.jpg","datePublished":"2019-12-05T08:28:25+00:00","dateModified":"2023-06-14T10:06:41+00:00","description":"Driver navigation commands to move to previous page or navigate back and forward in browser using Selenium Webdriver with java.","breadcrumb":{"@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#primaryimage","url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.jpg","contentUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Navigate-Back-and-Forward-in-the-Browser-history.jpg","width":700,"height":400,"caption":"navigate back and forward in the browser history"},{"@type":"BreadcrumbList","@id":"https:\/\/artoftesting.com\/navigate-back-forward-in-browser-selenium-webdriver-java#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/artoftesting.com\/"},{"@type":"ListItem","position":2,"name":"Automation Testing","item":"https:\/\/artoftesting.com\/category\/automation-testing"},{"@type":"ListItem","position":3,"name":"Selenium","item":"https:\/\/artoftesting.com\/category\/automation-testing\/selenium"},{"@type":"ListItem","position":4,"name":"Browser Navigate Back and Forward in Selenium"}]},{"@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\/702","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=702"}],"version-history":[{"count":2,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/702\/revisions"}],"predecessor-version":[{"id":7173,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/702\/revisions\/7173"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media\/1617"}],"wp:attachment":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media?parent=702"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/categories?post=702"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/tags?post=702"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}