{"id":213946,"date":"2019-12-13T11:23:52","date_gmt":"2019-12-13T11:23:52","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=213946"},"modified":"2020-02-28T05:44:33","modified_gmt":"2020-02-28T05:44:33","slug":"handling-drop-down-list-with-selenium-webdriver","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/","title":{"rendered":"Handling Drop Down List with Selenium WebDriver"},"content":{"rendered":"\n<p>Drop Down And Multi-Select list is the set of HTML fields that we commonly interact with.So, In order to handle drop-down and multi-select list with Selenium WebDriver, it is essential to use&nbsp;<em><strong>Select<\/strong>&nbsp;<\/em>class, It is the Webdriver class which is the part of the selenium package, provides the implementation of the HTML SELECT tag. <\/p>\n\n\n\n<p>We need to Import the below package.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">org.openqa.selenium.support.ui.Select<\/pre>\n\n\n\n<p><strong><em>Select<\/em><\/strong> is an ordinary class, so it&#8217;s object is also created by a <strong>New<\/strong> keyword with regular class creation syntax.<br>Standard syntax of Select Class is as:-<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">Select dropdown = new Select(&lt;WebElement&gt;);<\/pre>\n\n\n\n<p>For a better understanding on using the &lt;<em>Select<\/em>&gt; class, refer at the below Java code.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">WebElement myElement = driver.findElement(By.name(&quot;dropdown&quot;));\nSelect dropdown = new Select(myElement);\n\n\/\/ as an alternative, you can shorten your same code as\n\nSelect dropdown = new Select(driver.findElement(By.id(&quot;dropdown&quot;)));<\/pre>\n\n\n\n<p>WebDriver provides three ways to select an option from the drop-down menu. So, once you have initialized the &lt;Select&gt; object then, you can access all the methods used on the drop-down and Multi-Select list. <\/p>\n\n\n\n<p><strong>Types of Select Methods:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>selectByVisibleText Method<\/strong><\/li><li><strong>selectByIndex Method<\/strong><\/li><li><strong>selectByValue Method<\/strong><\/li><\/ol>\n\n\n\n<p>Here&#8217;s the illustration of the dropdown operation with following HTML Sample Code.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;html&gt;\n    &lt;head&gt;\n            &lt;title&gt;Select Example&lt;\/title&gt;\n        &lt;\/head&gt;\n        &lt;body&gt;\n                   &lt;select name=&quot;dropdown&quot;&gt;\n                        &lt;option &gt;Select...&lt;\/option&gt;\n                        &lt;option value=&quot;SE&quot;&gt;Selenium&lt;\/option&gt;\n                        &lt;option value=&quot;KT&quot;&gt;KatalonStudio&lt;\/option&gt;\n                        &lt;option value=&quot;QTP&quot;&gt;QTP&lt;\/option&gt;\n                        &lt;option value=&quot;AP&quot;&gt;Appium&lt;\/option&gt;\n                        &lt;option value=&quot;JM&quot;&gt;jMeter&lt;\/option&gt;\n                    &lt;\/select&gt;\n                &lt;\/body&gt;\n    &lt;\/html&gt;<\/pre>\n\n\n\n<p><strong>SelectByVisibleText Method<\/strong><\/p>\n\n\n\n<p>Selects options that match the input text in the argument, it will match the visible text in the dropdown field.<\/p>\n\n\n\n<p>SYNTAX:- <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">dropdown.selectByVisibleText();<\/pre>\n\n\n\n<p>Here&#8217;s the Sample code to select the value based on the visible text.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">package testpackage;package testpackage;\nimport org.openqa.selenium.By;\nimport org.openqa.selenium.WebDriver;\nimport org.openqa.selenium.WebElement;\nimport org.openqa.selenium.chrome.ChromeDriver;\nimport org.openqa.selenium.support.ui.Select;\n \npublic class SelectMethod {\n \npublic static void main(String[] args) throws InterruptedException{\nSystem.setProperty(&quot;webdriver.chrome.driver&quot;,&quot;\/home\/users\/priya.singh\/Downloads\/chromedriver&quot;);\n\n\/\/Create a instance of ChromeDriver constructor\n\n WebDriver driver = new ChromeDriver();\n driver.manage().window().maximize();\n\n\/\/Give the navigation of the page where you want to select value for dropdown\n\n driver.get(&quot;https:\/\/www.path-to-select-dropdown.com\/&quot;);\n\n Thread.sleep(10000);\n\n WebElement myElement = driver.findElement(By.name(&quot;dropdown&quot;));\n Select dropdown= new Select(myElement);\n \n\/\/selectByVisibleText\n dropdown.selectByVisibleText(&quot;Selenium&quot;);\n }\n}<\/pre>\n\n\n\n<p><strong>selectByIndex Method<\/strong><\/p>\n\n\n\n<p>Selects the option based on the index value. <\/p>\n\n\n\n<p>SYNTAX:-<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">dropdown.selectByIndex(Index);<\/pre>\n\n\n\n<p>Here&#8217;s the Sample code to select the value based on the Index value.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">package testpackage;\nimport org.openqa.selenium.By;\nimport org.openqa.selenium.WebDriver;\nimport org.openqa.selenium.WebElement;\nimport org.openqa.selenium.chrome.ChromeDriver;\nimport org.openqa.selenium.support.ui.Select;\n \npublic class SelectMethod {\n \npublic static void main(String[] args) throws InterruptedException{\nSystem.setProperty(&quot;webdriver.chrome.driver&quot;,&quot;\/home\/users\/priya.singh\/Downloads\/chromedriver&quot;);\n\n\/\/Create a instance of ChromeDriver constructor\n\n WebDriver driver = new ChromeDriver();\n driver.manage().window().maximize();\n\n\/\/Give the navigation of the page where you want to select value for dropdown\n\n driver.get(&quot;https:\/\/www.path-to-select-dropdown.com\/&quot;);\n\n Thread.sleep(10000);\n\n WebElement myElement = driver.findElement(By.name(&quot;dropdown&quot;));\n Select dropdown= new Select(myElement);\n \n\/\/selectByIndex\n dropdown.selectByIndex(2); \/\/ value is KatalonStudio\n }\n}<\/pre>\n\n\n\n<p><strong>selectByValue Method<\/strong><\/p>\n\n\n\n<p>Selects the option whose value attribute provided by the user in the specified parameter.<\/p>\n\n\n\n<p>SYNTAX:-<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">dropdown.selectByValue(Value);<\/pre>\n\n\n\n<p>Here&#8217;s the Sample code to select the value based on the Value.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">package testpackage;\nimport org.openqa.selenium.By;\nimport org.openqa.selenium.WebDriver;\nimport org.openqa.selenium.WebElement;\nimport org.openqa.selenium.chrome.ChromeDriver;\nimport org.openqa.selenium.support.ui.Select;\n \npublic class SelectMethod {\n \npublic static void main(String[] args) throws InterruptedException{\nSystem.setProperty(&quot;webdriver.chrome.driver&quot;,&quot;\/home\/users\/priya.singh\/Downloads\/chromedriver&quot;);\n\n\/\/Create a instance of ChromeDriver constructor\n\n WebDriver driver = new ChromeDriver();\n driver.manage().window().maximize();\n\n\/\/Give the navigation of the page where you want to select value for dropdown\n\n driver.get(&quot;https:\/\/www.path-to-select-dropdown.com\/&quot;);\n\n Thread.sleep(10000);\n\n WebElement myElement = driver.findElement(By.name(&quot;dropdown&quot;));\n Select dropdown= new Select(myElement);\n \n\/\/selectByValue\n dropdown.selectByValue(&quot;SE&quot;); \/\/ value is Selenium\n }\n}<\/pre>\n\n\n\n<p>This is all about Handling Drop-Down list with Selenium WebDriver.<\/p>\n\n\n\n<p>Thanks for reading this blog \ud83d\ude42<\/p>\n\n\n\n<p>Happy testing!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Drop Down And Multi-Select list is the set of HTML fields that we commonly interact with.So, In order to handle drop-down and multi-select list with Selenium WebDriver, it is essential to use&nbsp;Select&nbsp;class, It is the Webdriver class which is the part of the selenium package, provides the implementation of the HTML SELECT tag. We need <a href=\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":254,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4312,3137,4932],"tags":[2273,9357,1867,3138,5195],"class_list":["post-213946","post","type-post","status-publish","format-standard","hentry","category-automation-testing","category-testing","category-web-testing","tag-automation","tag-dropdown-field","tag-java","tag-selenium","tag-webdriver-using-chromedriver"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Handling Drop Down List with Selenium WebDriver - Webkul Blog<\/title>\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\/handling-drop-down-list-with-selenium-webdriver\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Handling Drop Down List with Selenium WebDriver - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Drop Down And Multi-Select list is the set of HTML fields that we commonly interact with.So, In order to handle drop-down and multi-select list with Selenium WebDriver, it is essential to use&nbsp;Select&nbsp;class, It is the Webdriver class which is the part of the selenium package, provides the implementation of the HTML SELECT tag. We need [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/\" \/>\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=\"2019-12-13T11:23:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-02-28T05:44:33+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=\"Priya Singh\" \/>\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=\"Priya Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/\"},\"author\":{\"name\":\"Priya Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/851e395b5e31e900911279abd4fb70a2\"},\"headline\":\"Handling Drop Down List with Selenium WebDriver\",\"datePublished\":\"2019-12-13T11:23:52+00:00\",\"dateModified\":\"2020-02-28T05:44:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/\"},\"wordCount\":284,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"Automation\",\"dropdown field\",\"java\",\"Selenium\",\"Webdriver using Chromedriver\"],\"articleSection\":[\"Automation testing\",\"Testing\",\"Web testing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/\",\"url\":\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/\",\"name\":\"Handling Drop Down List with Selenium WebDriver - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2019-12-13T11:23:52+00:00\",\"dateModified\":\"2020-02-28T05:44:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Handling Drop Down List with Selenium WebDriver\"}]},{\"@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\/851e395b5e31e900911279abd4fb70a2\",\"name\":\"Priya Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b16cffb90ba0c063de5549b25325147813a6bf679df37cf743953840ef8ed016?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b16cffb90ba0c063de5549b25325147813a6bf679df37cf743953840ef8ed016?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Priya Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/priyasingh-tester617\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Handling Drop Down List with Selenium WebDriver - Webkul Blog","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\/handling-drop-down-list-with-selenium-webdriver\/","og_locale":"en_US","og_type":"article","og_title":"Handling Drop Down List with Selenium WebDriver - Webkul Blog","og_description":"Drop Down And Multi-Select list is the set of HTML fields that we commonly interact with.So, In order to handle drop-down and multi-select list with Selenium WebDriver, it is essential to use&nbsp;Select&nbsp;class, It is the Webdriver class which is the part of the selenium package, provides the implementation of the HTML SELECT tag. We need [...]","og_url":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2019-12-13T11:23:52+00:00","article_modified_time":"2020-02-28T05:44:33+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":"Priya Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Priya Singh","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/"},"author":{"name":"Priya Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/851e395b5e31e900911279abd4fb70a2"},"headline":"Handling Drop Down List with Selenium WebDriver","datePublished":"2019-12-13T11:23:52+00:00","dateModified":"2020-02-28T05:44:33+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/"},"wordCount":284,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["Automation","dropdown field","java","Selenium","Webdriver using Chromedriver"],"articleSection":["Automation testing","Testing","Web testing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/","url":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/","name":"Handling Drop Down List with Selenium WebDriver - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2019-12-13T11:23:52+00:00","dateModified":"2020-02-28T05:44:33+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/handling-drop-down-list-with-selenium-webdriver\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Handling Drop Down List with Selenium WebDriver"}]},{"@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\/851e395b5e31e900911279abd4fb70a2","name":"Priya Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b16cffb90ba0c063de5549b25325147813a6bf679df37cf743953840ef8ed016?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b16cffb90ba0c063de5549b25325147813a6bf679df37cf743953840ef8ed016?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Priya Singh"},"url":"https:\/\/webkul.com\/blog\/author\/priyasingh-tester617\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/213946","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\/254"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=213946"}],"version-history":[{"count":19,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/213946\/revisions"}],"predecessor-version":[{"id":234941,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/213946\/revisions\/234941"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=213946"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=213946"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=213946"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}