{"id":111930,"date":"2018-02-21T14:24:49","date_gmt":"2018-02-21T14:24:49","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=111930"},"modified":"2018-04-05T09:00:34","modified_gmt":"2018-04-05T09:00:34","slug":"headless-testing-selenium","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/","title":{"rendered":"Headless Testing with Selenium"},"content":{"rendered":"<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">Selenium<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>Selenium is one of the most popular and efficient automation tool\u00a0used today. It helps to perform robust\u00a0browser-based automation testing.<br \/>\n&#8220;<em>Selenium Webdriver<\/em>&#8221; the primary feature in Selenium, provide better support to dynamic web pages where elements of the webpage may change without the page itself being reloaded.<\/p>\n<p>In addition to it, it helps\u00a0testers to perform &#8220;<strong>Headless Testing<\/strong>&#8220;.<\/p>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">Headless Testing<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>To test an app rapidly in multiple browsers without any visual interference, Headless Testing came into the picture.<br \/>\n<strong>Headless Testing <\/strong>is a term used to define a testing which is performed on Headless Browser which is a browser simulation program that does not have a graphical user interface. And when it is achieved with selenium then it is said to be &#8216;<strong>Headless Testing with Selenium&#8217;<\/strong>.<br \/>\nIn Headless Browsers when Selenium tests are run, they get\u00a0executed in the background.<br \/>\nThe widely used Headless Browsers available are:<\/p>\n<ul>\n<li>PhantomJS<\/li>\n<li>HtmlUnit<\/li>\n<li>Headless Chrome<\/li>\n<li>NodeJS<\/li>\n<\/ul>\n<p>Let us dive into the implementation of Selenium Headless Testing with PhantomJS and HtmlUnit Driver the two widely used headless browsers.<\/p>\n<div class=\"alert alert-success\"><span style=\"color: #000000\"><strong>PhantomJS<\/strong><\/span><\/div>\n<p><em style=\"font-family: Consolas, Monaco, monospace\">PhantomJS<\/em> is a headless WebKit scriptable JavaScript API.<\/p>\n<p>Pre-requisites:<\/p>\n<ul>\n<li>Get the binary executable file of PhantomJS. <span style=\"color: #00ccff\"><a style=\"font-family: Consolas, Monaco, monospace;font-size: 17px;color: #00ccff\" href=\"http:\/\/phantomjs.org\/download.html\">Download<\/a><\/span><\/li>\n<li>PhantomJS driver is itself readily available with the Selenium library, you just need to import it.<\/li>\n<\/ul>\n<p><span style=\"text-decoration: underline\"><span style=\"font-family: Consolas, Monaco, monospace\">Try the below example code:<\/span><\/span><\/p>\n<pre class=\"brush:java\">package HeadlessTesting;\r\n\r\nimport org.openqa.selenium.WebDriver;\r\nimport org.openqa.selenium.phantomjs.PhantomJSDriver;\r\nimport org.testng.annotations.AfterTest;\r\nimport org.testng.annotations.Test;\r\n\r\n\r\npublic class PhantomJS \r\n\r\n{\r\n        static WebDriver driver;\r\n\tString phantom_path;\r\n\t\r\n@Test\r\n\r\npublic void RunPhantom() throws InterruptedException\r\n {\r\n\t\r\n     phantom_path= System.getProperty(\"user.dir\")+ \"\/phantomjs\";\r\n\t\r\n   \/\/Set the path of the phantomjs in the properties\r\n    System.setProperty(\"phantomjs.binary.path\", phantom_path);\r\n    \r\n   \/\/Initialize PhantomJS Driver\r\n    driver= new PhantomJSDriver();\r\n    \r\n    driver.manage().window().maximize();\r\n    \r\n  \/\/Open desired link\r\n   driver.navigate().to(\"https:\/\/store.webkul.com\/\");\r\n\t\r\n \/\/Get &amp; Print the title of navigated page\r\n  System.out.println(\"Title of the page is ----&gt; \"+driver.getTitle());\r\n\t\r\n }\r\n\r\n@AfterTest\r\n\r\npublic void closebrowser()\r\n {\r\n\tSystem.out.println(\"Thank You! for reading the blog\");\r\n\tdriver.quit();\r\n }\r\n}<\/pre>\n<div class=\"alert alert-success\"><span style=\"color: #000000\"><strong>HtmlUnitDriver<\/strong><\/span><\/div>\n<p>HtmlUnitDriver is a headless driver based on HtmlUnit and said to be one of the fastest and light-weight browsers.<\/p>\n<p>Likewise, PhantomJS it is also itself readily available with the Selenium library, so just import it.<\/p>\n<p><span style=\"text-decoration: underline\">Try the below demo code:<\/span><\/p>\n<pre class=\"brush:java\">package HeadlessTesting;\r\n\r\nimport org.openqa.selenium.WebDriver;\r\nimport org.testng.annotations.AfterTest;\r\nimport org.testng.annotations.Test;\r\nimport org.openqa.selenium.htmlunit.HtmlUnitDriver;\r\n\r\npublic class HtmlUnitDemo\r\n{\r\nstatic WebDriver driver;\r\n\r\n@Test\r\npublic void HtmlUnitDriverExample() throws InterruptedException\r\n{\r\n\r\n\/\/Initialize HtmlUnitDriver\r\ndriver = new HtmlUnitDriver();\r\n\r\n\/\/Navigate to desired URL\r\ndriver.navigate().to(\"https:\/\/store.webkul.com\/\");\r\n\r\n\/\/Get &amp; Print the title of navigated page\r\nSystem.out.println(\"Title of the page is ----&gt; \" +driver.getTitle());\r\n\r\n}\r\n\r\n@AfterTest\r\n\r\npublic void closebrowser()\r\n{\r\nSystem.out.println(\"Thank You! for reading the blog\");\r\ndriver.quit();\r\n}\r\n\r\n}<\/pre>\n<\/div>\n<\/div>\n<p>This is all about how one can start with Headless Testing with Selenium using PhantomJS and HtmlUnitDriver. Please feel free to share your feedback with us using the comment section.<\/p>\n<p>Thank You! Have a nice day \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Selenium Selenium is one of the most popular and efficient automation tool\u00a0used today. It helps to perform robust\u00a0browser-based automation testing. &#8220;Selenium Webdriver&#8221; the primary feature in Selenium, provide better support to dynamic web pages where elements of the webpage may change without the page itself being reloaded. In addition to it, it helps\u00a0testers to perform <a href=\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":153,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5847,3137,5848],"tags":[5191,5197,6214,3365,3138],"class_list":["post-111930","post","type-post","status-publish","format-standard","hentry","category-selenium","category-testing","category-testng","tag-headless-browsers","tag-headless-testing","tag-htmlunitdriver","tag-phantomjs","tag-selenium"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Headless Testing with Selenium | Headless Browsers<\/title>\n<meta name=\"description\" content=\"Headless Testing with Selenium helps you to perform testing on Headless Browsers, means running a browser UI test without showing the browser GUI.To increase the speed of the test script i.e. performance of the script we can run our test cases using Headless Testing with Selenium.\" \/>\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\/headless-testing-selenium\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Headless Testing with Selenium | Headless Browsers\" \/>\n<meta property=\"og:description\" content=\"Headless Testing with Selenium helps you to perform testing on Headless Browsers, means running a browser UI test without showing the browser GUI.To increase the speed of the test script i.e. performance of the script we can run our test cases using Headless Testing with Selenium.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/\" \/>\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=\"2018-02-21T14:24:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-04-05T09:00:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Gurpreet Kaur\" \/>\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=\"Gurpreet Kaur\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/\"},\"author\":{\"name\":\"Gurpreet Kaur\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/61645f698b208611319688208e65d02c\"},\"headline\":\"Headless Testing with Selenium\",\"datePublished\":\"2018-02-21T14:24:49+00:00\",\"dateModified\":\"2018-04-05T09:00:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/\"},\"wordCount\":294,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"Headless browsers\",\"Headless testing\",\"HtmlUnitDriver\",\"Phantomjs\",\"Selenium\"],\"articleSection\":[\"Selenium\",\"Testing\",\"TestNG\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/\",\"url\":\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/\",\"name\":\"Headless Testing with Selenium | Headless Browsers\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2018-02-21T14:24:49+00:00\",\"dateModified\":\"2018-04-05T09:00:34+00:00\",\"description\":\"Headless Testing with Selenium helps you to perform testing on Headless Browsers, means running a browser UI test without showing the browser GUI.To increase the speed of the test script i.e. performance of the script we can run our test cases using Headless Testing with Selenium.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/headless-testing-selenium\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Headless Testing with Selenium\"}]},{\"@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\/61645f698b208611319688208e65d02c\",\"name\":\"Gurpreet Kaur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/012ec807781478fb397ec8b4c6c4f8855c4c946bca2580a547df96bc257200d4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/012ec807781478fb397ec8b4c6c4f8855c4c946bca2580a547df96bc257200d4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Gurpreet Kaur\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/gurpreet-kaur589\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Headless Testing with Selenium | Headless Browsers","description":"Headless Testing with Selenium helps you to perform testing on Headless Browsers, means running a browser UI test without showing the browser GUI.To increase the speed of the test script i.e. performance of the script we can run our test cases using Headless Testing with Selenium.","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\/headless-testing-selenium\/","og_locale":"en_US","og_type":"article","og_title":"Headless Testing with Selenium | Headless Browsers","og_description":"Headless Testing with Selenium helps you to perform testing on Headless Browsers, means running a browser UI test without showing the browser GUI.To increase the speed of the test script i.e. performance of the script we can run our test cases using Headless Testing with Selenium.","og_url":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-02-21T14:24:49+00:00","article_modified_time":"2018-04-05T09:00:34+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Gurpreet Kaur","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Gurpreet Kaur","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/"},"author":{"name":"Gurpreet Kaur","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/61645f698b208611319688208e65d02c"},"headline":"Headless Testing with Selenium","datePublished":"2018-02-21T14:24:49+00:00","dateModified":"2018-04-05T09:00:34+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/"},"wordCount":294,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["Headless browsers","Headless testing","HtmlUnitDriver","Phantomjs","Selenium"],"articleSection":["Selenium","Testing","TestNG"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/headless-testing-selenium\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/","url":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/","name":"Headless Testing with Selenium | Headless Browsers","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2018-02-21T14:24:49+00:00","dateModified":"2018-04-05T09:00:34+00:00","description":"Headless Testing with Selenium helps you to perform testing on Headless Browsers, means running a browser UI test without showing the browser GUI.To increase the speed of the test script i.e. performance of the script we can run our test cases using Headless Testing with Selenium.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/headless-testing-selenium\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/headless-testing-selenium\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Headless Testing with Selenium"}]},{"@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\/61645f698b208611319688208e65d02c","name":"Gurpreet Kaur","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/012ec807781478fb397ec8b4c6c4f8855c4c946bca2580a547df96bc257200d4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/012ec807781478fb397ec8b4c6c4f8855c4c946bca2580a547df96bc257200d4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Gurpreet Kaur"},"url":"https:\/\/webkul.com\/blog\/author\/gurpreet-kaur589\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/111930","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\/153"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=111930"}],"version-history":[{"count":44,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/111930\/revisions"}],"predecessor-version":[{"id":119396,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/111930\/revisions\/119396"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=111930"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=111930"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=111930"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}