{"id":102580,"date":"2017-12-01T09:35:21","date_gmt":"2017-12-01T09:35:21","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=102580"},"modified":"2017-12-05T12:30:42","modified_gmt":"2017-12-05T12:30:42","slug":"execute-testng-xml-via-terminal","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/","title":{"rendered":"Execute Selenium script(testng.xml) through terminal\/command prompt"},"content":{"rendered":"<p>We can execute testng.xml file in different ways. It could be <strong>Maven, Ant, IDE or directly via command line\/terminal<\/strong>. Executing testng.xml file via command line allows user to run multiple testng xml files simultaneously. Before running a testng.xml suite through the command prompt, we need to compile our project code. We can find the compiled code by eclipse under a folder named \u201cbin\u201d inside the corresponding java project.<\/p>\n<h4><strong>Pre-requisite:<\/strong><\/h4>\n<p>All the dependencies should be in a central location i.e. All the jar files should be in single folder.<\/p>\n<h4><strong>Directory structure:<\/strong><\/h4>\n<p>\/bin &#8211; All the test packages are under bin<strong><br \/>\n<\/strong>\/src &#8211; All the source files are under src<strong><br \/>\n<\/strong>\/lib &#8211; All\u00a0the libraries required for the execution of tests are under lib. Also all needed jar files are kept here.<\/p>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">Running test xml via terminal<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<div>\n<h5><strong>Now lets see how to run testng.xml via terminal\u00a0<\/strong><\/h5>\n<ol>\n<li>Open CMD\/terminal and navigate to project folder<\/li>\n<li>Now we have two ways to execute the testng xml.<br \/>\na) Firstly, we need to set classpath from terminal. To set classpath we need to mention the bin(containing the packages) folder and required jar files folder(in this case it is lib).<br \/>\n<strong>set classpath=[Project Folder]\\bin;[Project Folder]\\libs\\*<br \/>\n<\/strong>Secondly to execute script we have,<br \/>\n<strong><strong>java org.testng.TestNG testng.xml<br \/>\n<\/strong><\/strong>b)Instead of \u00a0giving 2 different commands, we can combine both as a single command to execute the testng.xml file.<br \/>\n<strong>java -cp \u201c.\\bin;.\\libs\\*\u201d org.testng.TestNG testng.xml<\/strong><br \/>\nHere,\u00a0we are adding the TestNG JAR and the project compiled code to the Java classpath by using the -cp option of Java.<\/li>\n<li>We can find the result of test which are passed\/failed or skipped.\n<div class=\"para-images\">\n<div><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg\" loading=\"lazy\" \/><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/testng_terminal_result.jpg\" loading=\"lazy\" \/><\/div>\n<\/div>\n<\/li>\n<\/ol>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">Execute multiple testng.xml files<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<div>\n<p>If we need to execute multiple xml files, we can use the previous command by passing the other XML files as arguments to the terminal.<\/p>\n<p>The following is a sample command:<\/p>\n<p><strong>java -cp \u201c.\\bin;.\\JarFiles\\*\u201d org.testng.TestNG testng.xml testng1.xml<\/strong><\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">Executing a particular test from testng.xml file<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>To execute a particular test from the testng XML file, we can use option -testnames at the terminal with comma-separated names of tests that need to be executed.<\/p>\n<p>The following is a sample command:<\/p>\n<p><strong>java -cp \u201c.\\bin;.\\JarFiles\\*\u201d org.testng.TestNG -testnames \u201cRegression\u201d testng.xml<\/strong><\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>We can execute testng.xml file in different ways. It could be Maven, Ant, IDE or directly via command line\/terminal. Executing testng.xml file via command line allows user to run multiple testng xml files simultaneously. Before running a testng.xml suite through the command prompt, we need to compile our project code. We can find the compiled <a href=\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":94,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4312,3137,4932],"tags":[5812,5815,5816,5813,5814],"class_list":["post-102580","post","type-post","status-publish","format-standard","hentry","category-automation-testing","category-testing","category-web-testing","tag-execute-selenium-script","tag-execute-testng-xml-via-command-line","tag-execute-testng-xml-via-terminal","tag-testng-xml-via-command-line","tag-testng-xml-via-terminal"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Execute Selenium script(testng.xml) through terminal\/command prompt<\/title>\n<meta name=\"description\" content=\"Executing testng.xml file via command line allows user to run multiple testng xml files simultaneously. Before running a testng.xml suite....\" \/>\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\/execute-testng-xml-via-terminal\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Execute Selenium script(testng.xml) through terminal\/command prompt\" \/>\n<meta property=\"og:description\" content=\"Executing testng.xml file via command line allows user to run multiple testng xml files simultaneously. Before running a testng.xml suite....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/\" \/>\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=\"2017-12-01T09:35:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-05T12:30:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg\" \/>\n<meta name=\"author\" content=\"Himanshu Chand\" \/>\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=\"Himanshu Chand\" \/>\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\/execute-testng-xml-via-terminal\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/\"},\"author\":{\"name\":\"Himanshu Chand\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/08d4d0b31f228925099740afd668b50f\"},\"headline\":\"Execute Selenium script(testng.xml) through terminal\/command prompt\",\"datePublished\":\"2017-12-01T09:35:21+00:00\",\"dateModified\":\"2017-12-05T12:30:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/\"},\"wordCount\":395,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg\",\"keywords\":[\"Execute Selenium script\",\"execute Testng.xml via command line\",\"execute Testng.xml via terminal\",\"Testng.xml via command line\",\"Testng.xml via terminal\"],\"articleSection\":[\"Automation testing\",\"Testing\",\"Web testing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/\",\"url\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/\",\"name\":\"Execute Selenium script(testng.xml) through terminal\/command prompt\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg\",\"datePublished\":\"2017-12-01T09:35:21+00:00\",\"dateModified\":\"2017-12-05T12:30:42+00:00\",\"description\":\"Executing testng.xml file via command line allows user to run multiple testng xml files simultaneously. Before running a testng.xml suite....\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg\",\"width\":740,\"height\":448},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Execute Selenium script(testng.xml) through terminal\/command prompt\"}]},{\"@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\/08d4d0b31f228925099740afd668b50f\",\"name\":\"Himanshu Chand\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/067d10770fdcc86d177164f68eb74b9528397b3a5fbf01970b6f6dfd48c64281?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\/067d10770fdcc86d177164f68eb74b9528397b3a5fbf01970b6f6dfd48c64281?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Himanshu Chand\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/himanshu-chand168\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Execute Selenium script(testng.xml) through terminal\/command prompt","description":"Executing testng.xml file via command line allows user to run multiple testng xml files simultaneously. Before running a testng.xml suite....","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\/execute-testng-xml-via-terminal\/","og_locale":"en_US","og_type":"article","og_title":"Execute Selenium script(testng.xml) through terminal\/command prompt","og_description":"Executing testng.xml file via command line allows user to run multiple testng xml files simultaneously. Before running a testng.xml suite....","og_url":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-12-01T09:35:21+00:00","article_modified_time":"2017-12-05T12:30:42+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg","type":"","width":"","height":""}],"author":"Himanshu Chand","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Himanshu Chand","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/"},"author":{"name":"Himanshu Chand","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/08d4d0b31f228925099740afd668b50f"},"headline":"Execute Selenium script(testng.xml) through terminal\/command prompt","datePublished":"2017-12-01T09:35:21+00:00","dateModified":"2017-12-05T12:30:42+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/"},"wordCount":395,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg","keywords":["Execute Selenium script","execute Testng.xml via command line","execute Testng.xml via terminal","Testng.xml via command line","Testng.xml via terminal"],"articleSection":["Automation testing","Testing","Web testing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/","url":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/","name":"Execute Selenium script(testng.xml) through terminal\/command prompt","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg","datePublished":"2017-12-01T09:35:21+00:00","dateModified":"2017-12-05T12:30:42+00:00","description":"Executing testng.xml file via command line allows user to run multiple testng xml files simultaneously. Before running a testng.xml suite....","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/cd_to_project.jpg","width":740,"height":448},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/execute-testng-xml-via-terminal\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Execute Selenium script(testng.xml) through terminal\/command prompt"}]},{"@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\/08d4d0b31f228925099740afd668b50f","name":"Himanshu Chand","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/067d10770fdcc86d177164f68eb74b9528397b3a5fbf01970b6f6dfd48c64281?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\/067d10770fdcc86d177164f68eb74b9528397b3a5fbf01970b6f6dfd48c64281?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Himanshu Chand"},"url":"https:\/\/webkul.com\/blog\/author\/himanshu-chand168\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/102580","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\/94"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=102580"}],"version-history":[{"count":10,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/102580\/revisions"}],"predecessor-version":[{"id":103195,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/102580\/revisions\/103195"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=102580"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=102580"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=102580"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}