{"id":16265,"date":"2014-12-07T12:12:50","date_gmt":"2014-12-07T06:42:50","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=16265"},"modified":"2015-07-10T13:15:42","modified_gmt":"2015-07-10T07:45:42","slug":"selenium-web-driver-an-intro","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/","title":{"rendered":"Selenium Web Driver: An Introduction"},"content":{"rendered":"<p>Selenium WebDriver is a clean, fast framework for automated testing of webapps.<\/p>\n<p>Selenium WebDriver, a popular and well established <a title=\"Web Testing using Selenium\" href=\"https:\/\/tothenewco.pro\/blog\/web-testing-using-selenium-fix-for-error-javalangnullpointerexception-sessionid-should-not-be-null-has-this-session-been-started-yet\/\">testing framework<\/a> is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java or C# through Ruby, Python to JavaScript. It is one of the first Open Source projects to bring browser-based testing to the masses.<\/p>\n<p>It aims to provide a friendly API that is easy to explore and understand, which will help make your tests easier to read and maintain down the line.<\/p>\n<p>It is not tied to any particular test framework, so it can be used equally well with JUnit, TestNG or from a plain old &#8220;main&#8221; method.<\/p>\n<p><strong>Guide to \u201cGetting Started\u201d<\/strong><\/p>\n<p>This &#8220;Getting Started&#8221; guide introduces you to WebDriver&#8217;s Java API and helps get you started becoming familiar with it.<\/p>\n<ul>\n<li>Start by <a href=\"http:\/\/selenium-release.storage.googleapis.com\/2.44\/selenium-java-2.44.0.zip\">downloading<\/a> the latest binaries and unpack them into a directory.<\/li>\n<li>Start a new Java project in your favourite IDE<\/li>\n<li>Add all the JAR files from the directory to the CLASSPATH of the Java project<\/li>\n<\/ul>\n<p><!--more--><\/p>\n<p>You can see that WebDriver acts just as a normal Java library does, it&#8217;s entirely self-contained, and you don&#8217;t need to remember to start any additional processes or run any installers before using it.<\/p>\n<p>You&#8217;re now ready to write some code. An easy way to get started is this example, which open the Firefox browser and searches for the term &#8220;Selenium Web Driver&#8221; on Google and then outputs the result page&#8217;s title to the console.<\/p>\n<p><code>package com.intelligrape.selenium.example;<br \/>\nimport org.openqa.selenium.By;<br \/>\nimport org.openqa.selenium.WebDriver;<br \/>\nimport org.openqa.selenium.WebElement;<br \/>\nimport org.openqa.selenium.firefox.FirefoxDriver;<\/code><\/p>\n<p>public class Example {<br \/>\npublic static void main(String[] args) {<\/p>\n<p>\/\/ create a new instance of the Firefox driver<br \/>\nWebDriver driver = new FirefoxDriver();<\/p>\n<p>\/\/ go to &#8220;http:\/\/google.com&#8221; to visit Google<br \/>\ndriver.get(&#8220;http:\/\/www.google.com&#8221;);<\/p>\n<p>\/\/ find the text input element by its name<br \/>\nWebElement element = driver.findElement(By.name(&#8220;q&#8221;));<\/p>\n<p>\/\/ enter something to search for<br \/>\nelement.sendKeys(&#8220;Selenium Web Driver&#8221;);<\/p>\n<p>\/\/ now submit the form.<br \/>\nelement.submit();<\/p>\n<p>\/\/ check the title of the page<br \/>\nSystem.out.println(&#8220;Page title is: &#8221; + driver.getTitle());<\/p>\n<p>\/\/close the browser<br \/>\ndriver.quit();<br \/>\n}<br \/>\n}<\/p>\n<p>Cheers<br \/>\nGaurav Gupta<br \/>\ngaurav.gupta[at]intelligrape[dot]com<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java [&hellip;]<\/p>\n","protected":false},"author":144,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":12,"footnotes":""},"categories":[7,1],"tags":[1561,25,1562,1563],"class_list":["post-16265","post","type-post","status-publish","format-standard","hentry","category-grails","category-technology","tag-automation-testing","tag-selenium","tag-selenium-web-driver","tag-software-testing"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Gaurav Gupta\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Selenium Web Driver: An Introduction | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"article:tag\" content=\"grails\" \/>\n\t\t<meta property=\"article:tag\" content=\"technology\" \/>\n\t\t<meta property=\"article:tag\" content=\"automation testing\" \/>\n\t\t<meta property=\"article:tag\" content=\"selenium\" \/>\n\t\t<meta property=\"article:tag\" content=\"selenium web driver\" \/>\n\t\t<meta property=\"article:tag\" content=\"software testing\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2014-12-07T06:42:50+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-07-10T07:45:42+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Selenium Web Driver: An Introduction | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#article\",\"name\":\"Selenium Web Driver: An Introduction | TO THE NEW Blog\",\"headline\":\"Selenium Web Driver: An Introduction\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-guptaintelligrape-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2014-12-07T12:12:50+05:30\",\"dateModified\":\"2015-07-10T13:15:42+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":4,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#webpage\"},\"articleSection\":\"Grails, Technology, automation testing, selenium, selenium web driver, software testing\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#listItem\",\"name\":\"Selenium Web Driver: An Introduction\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#listItem\",\"position\":3,\"name\":\"Selenium Web Driver: An Introduction\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-guptaintelligrape-com\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-guptaintelligrape-com\\\/\",\"name\":\"Gaurav Gupta\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/38812f45b06dde097eb3e8e34e1f0027088656e9cbf50978db06dcf95958f748?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Gaurav Gupta\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/\",\"name\":\"Selenium Web Driver: An Introduction | TO THE NEW Blog\",\"description\":\"Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/selenium-web-driver-an-intro\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-guptaintelligrape-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-guptaintelligrape-com\\\/#author\"},\"datePublished\":\"2014-12-07T12:12:50+05:30\",\"dateModified\":\"2015-07-10T13:15:42+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Selenium Web Driver: An Introduction | TO THE NEW Blog","description":"Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java","canonical_url":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#article","name":"Selenium Web Driver: An Introduction | TO THE NEW Blog","headline":"Selenium Web Driver: An Introduction","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-guptaintelligrape-com\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2014-12-07T12:12:50+05:30","dateModified":"2015-07-10T13:15:42+05:30","inLanguage":"en-US","commentCount":4,"mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#webpage"},"articleSection":"Grails, Technology, automation testing, selenium, selenium web driver, software testing"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#listItem","name":"Selenium Web Driver: An Introduction"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#listItem","position":3,"name":"Selenium Web Driver: An Introduction","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-guptaintelligrape-com\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-guptaintelligrape-com\/","name":"Gaurav Gupta","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/38812f45b06dde097eb3e8e34e1f0027088656e9cbf50978db06dcf95958f748?s=96&d=mm&r=g","width":96,"height":96,"caption":"Gaurav Gupta"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/","name":"Selenium Web Driver: An Introduction | TO THE NEW Blog","description":"Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-guptaintelligrape-com\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-guptaintelligrape-com\/#author"},"datePublished":"2014-12-07T12:12:50+05:30","dateModified":"2015-07-10T13:15:42+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"article","og:title":"Selenium Web Driver: An Introduction | TO THE NEW Blog","og:description":"Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java","og:url":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","article:tag":["grails","technology","automation testing","selenium","selenium web driver","software testing"],"article:published_time":"2014-12-07T06:42:50+00:00","article:modified_time":"2015-07-10T07:45:42+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Selenium Web Driver: An Introduction | TO THE NEW Blog","twitter:description":"Selenium WebDriver is a clean, fast framework for automated testing of webapps. Selenium WebDriver, a popular and well established testing framework is a wonderful tool that provides a handy unified interface that works with a large number of browsers and allows you to write your tests in almost every language you can imagine from Java","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"16265","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"article","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 07:45:54","updated":"2024-02-29 10:41:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tSelenium Web Driver: An Introduction\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Selenium Web Driver: An Introduction","link":"https:\/\/tothenewco.pro\/blog\/selenium-web-driver-an-intro\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/16265","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/144"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=16265"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/16265\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=16265"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=16265"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=16265"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}