{"id":705,"date":"2019-12-05T14:03:15","date_gmt":"2019-12-05T08:33:15","guid":{"rendered":"http:\/\/http:\/\/artoftesting.com\/\/?p=705"},"modified":"2023-06-13T15:03:23","modified_gmt":"2023-06-13T09:33:23","slug":"refresh-a-page-in-selenium-webdriver-java","status":"publish","type":"post","link":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java","title":{"rendered":"Refresh a Webpage in Selenium"},"content":{"rendered":"\n<p>There are multiple ways to refresh a webpage in Selenium Webdriver. In this post, we will present all these ways and also specify which one is the best.<br><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"519\" height=\"1024\" src=\"http:\/\/artoftesting.com\/wp-content\/uploads\/2023\/06\/refresh-519x1024.png\" alt=\"refresh in selenium\" class=\"wp-image-7170\" srcset=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2023\/06\/refresh-519x1024.png 519w, https:\/\/artoftesting.com\/wp-content\/uploads\/2023\/06\/refresh-152x300.png 152w, https:\/\/artoftesting.com\/wp-content\/uploads\/2023\/06\/refresh-150x296.png 150w, https:\/\/artoftesting.com\/wp-content\/uploads\/2023\/06\/refresh.png 700w\" sizes=\"auto, (max-width: 519px) 100vw, 519px\" \/><\/figure><\/div>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>1. <strong>Using driver.navigate() command<\/strong><br>Selenium Webdriver provides inherent support for refreshing a webpage using its driver.navigate() command. This is by far the most preferred and widely used way of refreshing a webpage.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; gutter: false; title: ; notranslate\" title=\"\">\ndriver.navigate().refresh();\n<\/pre><\/div>\n\n\n<p><br><\/p>\n\n\n\n<p> 2. <strong>Opening current URL using driver.getCurrentUrl() with driver.get() command<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; gutter: false; title: ; notranslate\" title=\"\">\ndriver.get(driver.getCurrentUrl());\n<\/pre><\/div>\n\n\n<p><br><\/p>\n\n\n\n<p>3. <strong> Opening current URL using driver.getCurrentUrl() with driver.navigate() command <\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; gutter: false; title: ; notranslate\" title=\"\">\ndriver.navigate().to(driver.getCurrentUrl());\n<\/pre><\/div>\n\n\n<p><br><\/p>\n\n\n\n<p> 4. <strong>Pressing F5 key on any textbox using sendKeys command<\/strong> <\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; gutter: false; title: ; notranslate\" title=\"\">\ndriver.findElement(By textboxLocator).sendKeys(Keys.F5);\n<\/pre><\/div>\n\n\n<p><br><\/p>\n\n\n\n<p> 5. <strong>Passing ascii value of F5 key i.e. &#8220;\\uE035&#8221; using sendKeys command <\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; gutter: false; title: ; notranslate\" title=\"\">\ndriver.findElement(By textboxLocator).sendKeys(&quot;\\uE035&quot;);\n<\/pre><\/div>\n\n\n<p><br>That\u2019s all we have in this post, comment below if you have any queries. Also please share this post with your friends and don\u2019t forget to check our&nbsp;<em>complete selenium tutorial here.<\/em> <\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><a href=\"http:\/\/artoftesting.com\/selenium-tutorial\">Selenium Webdriver Tutorial<\/a><\/p>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>There are multiple ways to refresh a webpage in Selenium Webdriver. In this post, we will present all these ways and also specify which one is the best. 1. Using driver.navigate() commandSelenium Webdriver provides inherent support for refreshing a webpage using its driver.navigate() command. This is by far the most preferred and widely used way &#8230; <a title=\"Refresh a Webpage in Selenium\" class=\"read-more\" href=\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java\" aria-label=\"Read more about Refresh a Webpage in Selenium\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1618,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-705","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>Refresh a WebPage in Selenium WebDriver [5 Ways]<\/title>\n<meta name=\"description\" content=\"Sharing all 5 different ways to reload or refresh a webpage in Selenium Webdriver with Java progamming language.\" \/>\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\/refresh-a-page-in-selenium-webdriver-java\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Refresh a WebPage in Selenium WebDriver [5 Ways]\" \/>\n<meta property=\"og:description\" content=\"Sharing all 5 different ways to reload or refresh a webpage in Selenium Webdriver with Java progamming language.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/artoftesting.com\/refresh-a-page-in-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:33:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-13T09:33:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.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\/refresh-a-page-in-selenium-webdriver-java#article\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java\"},\"author\":{\"name\":\"Kuldeep Rana\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\"},\"headline\":\"Refresh a Webpage in Selenium\",\"datePublished\":\"2019-12-05T08:33:15+00:00\",\"dateModified\":\"2023-06-13T09:33:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java\"},\"wordCount\":145,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.jpg\",\"articleSection\":[\"Selenium\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java\",\"url\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java\",\"name\":\"Refresh a WebPage in Selenium WebDriver [5 Ways]\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#primaryimage\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.jpg\",\"datePublished\":\"2019-12-05T08:33:15+00:00\",\"dateModified\":\"2023-06-13T09:33:23+00:00\",\"description\":\"Sharing all 5 different ways to reload or refresh a webpage in Selenium Webdriver with Java progamming language.\",\"breadcrumb\":{\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#primaryimage\",\"url\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.jpg\",\"contentUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.jpg\",\"width\":700,\"height\":400,\"caption\":\"refresh a webpage in selenium\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/artoftesting.com\/refresh-a-page-in-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\":\"Refresh a Webpage 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":"Refresh a WebPage in Selenium WebDriver [5 Ways]","description":"Sharing all 5 different ways to reload or refresh a webpage in Selenium Webdriver with Java progamming language.","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\/refresh-a-page-in-selenium-webdriver-java","og_locale":"en_US","og_type":"article","og_title":"Refresh a WebPage in Selenium WebDriver [5 Ways]","og_description":"Sharing all 5 different ways to reload or refresh a webpage in Selenium Webdriver with Java progamming language.","og_url":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java","og_site_name":"ArtOfTesting","article_publisher":"https:\/\/facebook.com\/artoftesting","article_published_time":"2019-12-05T08:33:15+00:00","article_modified_time":"2023-06-13T09:33:23+00:00","og_image":[{"width":700,"height":400,"url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.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\/refresh-a-page-in-selenium-webdriver-java#article","isPartOf":{"@id":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java"},"author":{"name":"Kuldeep Rana","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5"},"headline":"Refresh a Webpage in Selenium","datePublished":"2019-12-05T08:33:15+00:00","dateModified":"2023-06-13T09:33:23+00:00","mainEntityOfPage":{"@id":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java"},"wordCount":145,"commentCount":2,"publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"image":{"@id":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.jpg","articleSection":["Selenium"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#respond"]}]},{"@type":"WebPage","@id":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java","url":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java","name":"Refresh a WebPage in Selenium WebDriver [5 Ways]","isPartOf":{"@id":"https:\/\/artoftesting.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#primaryimage"},"image":{"@id":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.jpg","datePublished":"2019-12-05T08:33:15+00:00","dateModified":"2023-06-13T09:33:23+00:00","description":"Sharing all 5 different ways to reload or refresh a webpage in Selenium Webdriver with Java progamming language.","breadcrumb":{"@id":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/refresh-a-page-in-selenium-webdriver-java#primaryimage","url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.jpg","contentUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Refresh-a-webpage-in-Selenium.jpg","width":700,"height":400,"caption":"refresh a webpage in selenium"},{"@type":"BreadcrumbList","@id":"https:\/\/artoftesting.com\/refresh-a-page-in-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":"Refresh a Webpage 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\/705","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=705"}],"version-history":[{"count":3,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/705\/revisions"}],"predecessor-version":[{"id":7171,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/705\/revisions\/7171"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media\/1618"}],"wp:attachment":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media?parent=705"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/categories?post=705"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/tags?post=705"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}