{"id":376323,"date":"2023-04-18T10:38:09","date_gmt":"2023-04-18T10:38:09","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=376323"},"modified":"2023-05-10T13:49:24","modified_gmt":"2023-05-10T13:49:24","slug":"how-to-use-selenium-iframes-in-woocommerce","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/","title":{"rendered":"How to use Selenium iFrames in WooCommerce"},"content":{"rendered":"\n<p>Selenium is a powerful tool for web automation and testing, and it can be used to interact with iframes in WooCommerce.  It&#8217;s common to find websites that use iframe to embed third-party content or to isolate certain sections of the page. <\/p>\n\n\n\n<p>However, testing such websites with Selenium can be a bit tricky because iFrame is essentially separate HTML documents that exist within the parent document. In this blog post, we&#8217;ll discuss how to handle iFrame in Selenium.<\/p>\n\n\n\n<p>For more detail regarding, iFrame in selenium visit  <a href=\"https:\/\/www.selenium.dev\/documentation\/webdriver\/interactions\/frames\/\" target=\"_blank\" rel=\"noreferrer noopener\">Working with iFrame and frames<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is iFrame?<\/h3>\n\n\n\n<p>iFrames (short for inline frames) are HTML elements that allow web developers to embed one HTML document within another. They are essentially windows or frames that display  web pages or a specific section of a page. <\/p>\n\n\n\n<p>iFrame is commonly used for various reasons, such as embedding videos, maps, etc. They are also used to isolate sections of a page, which allows developers to load content asynchronously and improve the overall performance of the website.<\/p>\n\n\n\n<p>You may also check our <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugins <\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to handle iframes with selenium<\/h3>\n\n\n\n<p>Handling iFrame in selenium involves switching the focus from the parent document to the document and then performing the required actions. Here some steps to follow:<\/p>\n\n\n\n<p>Here are some steps you can follow to interact with iframes in the WooCommerce using Selenium:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">1. Switch to the iframe<\/h4>\n\n\n\n<p>Before interacting with any elements within an iframe, you need to switch the focus of the webdriver to the iframe document. <\/p>\n\n\n\n<p>You can do this by using the <code>switch_to.frame()<\/code> method of the webdriver object and passing it either the index or the name of the iFrame.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">driver.switch_to.frame(0) \ndriver.switch_to.frame(&quot;iframe_name&quot;) # Switch to the iFrame with the name &quot;iframe_name<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">2. Perform actions within the iframe<\/h4>\n\n\n\n<p>Once you have switched the focus to the iFrame, you can perform any actions within the iFrame, such as clicking on buttons, filling out forms, or scraping data.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">element = driver.find_element_by_xpath(&quot;\/\/input&#091;@name=&#039;username&#039;]&quot;)\nelement.send_keys(&quot;user123&quot;)\nbutton = driver.find_element_by_xpath(&quot;\/\/button&#091;@type=&#039;submit&#039;]&quot;)\nbutton.click()<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">3. Switch back to the parent document<\/h4>\n\n\n\n<p>After completing the required actions within the iFrame, you need to switch the focus back to the parent document using the <code>switch_to.default_content()<\/code> method.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">driver.switch_to.default_content() # Switch back to the parent document<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Putting it all together<\/h3>\n\n\n\n<p>Here&#8217;s an example of how to handle iFrames using Selenium in Python:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"783\" height=\"314\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png\" alt=\"iframe_in_selenium\" class=\"wp-image-376873\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png 783w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium-300x120.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium-250x100.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium-768x308.png 768w\" sizes=\"(max-width: 783px) 100vw, 783px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>Handling iFrames with Selenium can be a bit challenging, but it&#8217;s essential to properly test websites that use them. You should be able to interact with any elements within an iFrame and switch back to the parent document when necessary.<\/p>\n\n\n\n<p> Remember that each iFrame is essentially a separate document, so you need to switch the focus of the WebDriver accordingly.<\/p>\n\n\n\n<p>For more detail regarding Selenium visit  <a href=\"https:\/\/webkul.com\/blog\/implementation-of-selenium-with-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Selenium with Python<\/a><\/p>\n\n\n\n<p>That is all about the<strong> Selenium iFrame in WooCommerce<\/strong><\/p>\n\n\n\n<p>For any further query or suggestion add a ticket at our&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noreferrer noopener\">HelpDesk System<\/a>.<\/p>\n\n\n\n<p>If you are looking for development visit <a href=\"https:\/\/webkul.com\/woocommerce-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce development services<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Selenium is a powerful tool for web automation and testing, and it can be used to interact with iframes in WooCommerce. It&#8217;s common to find websites that use iframe to embed third-party content or to isolate certain sections of the page. However, testing such websites with Selenium can be a bit tricky because iFrame is <a href=\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":507,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4312,3137],"tags":[4430,3138,1468],"class_list":["post-376323","post","type-post","status-publish","format-standard","hentry","category-automation-testing","category-testing","tag-iframe","tag-selenium","tag-woocommerce"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to use Selenium iFrames in WooCommerce - Webkul Blog<\/title>\n<meta name=\"description\" content=\"iframe in selenium (selenium iframe) is HTML elements that allow web developers to embed one HTML document within another.\" \/>\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\/how-to-use-selenium-iframes-in-woocommerce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use Selenium iFrames in WooCommerce - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"iframe in selenium (selenium iframe) is HTML elements that allow web developers to embed one HTML document within another.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/\" \/>\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=\"2023-04-18T10:38:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-10T13:49:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png\" \/>\n<meta name=\"author\" content=\"Jitendra Kumar\" \/>\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=\"Jitendra Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/\"},\"author\":{\"name\":\"Jitendra Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/99dc56ae952ad7fe9d2c53c9b7073da0\"},\"headline\":\"How to use Selenium iFrames in WooCommerce\",\"datePublished\":\"2023-04-18T10:38:09+00:00\",\"dateModified\":\"2023-05-10T13:49:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/\"},\"wordCount\":458,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png\",\"keywords\":[\"iframe\",\"Selenium\",\"WooCommerce\"],\"articleSection\":[\"Automation testing\",\"Testing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/\",\"name\":\"How to use Selenium iFrames in WooCommerce - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png\",\"datePublished\":\"2023-04-18T10:38:09+00:00\",\"dateModified\":\"2023-05-10T13:49:24+00:00\",\"description\":\"iframe in selenium (selenium iframe) is HTML elements that allow web developers to embed one HTML document within another.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png\",\"width\":783,\"height\":314,\"caption\":\"iframe_in_selenium\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to use Selenium iFrames in WooCommerce\"}]},{\"@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\/99dc56ae952ad7fe9d2c53c9b7073da0\",\"name\":\"Jitendra Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1c8d4de619d7c3b4a35dde558fa19cedea3490169ff972780a7f0ecc335024a9?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\/1c8d4de619d7c3b4a35dde558fa19cedea3490169ff972780a7f0ecc335024a9?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Jitendra Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/jitendrakr-qa904\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use Selenium iFrames in WooCommerce - Webkul Blog","description":"iframe in selenium (selenium iframe) is HTML elements that allow web developers to embed one HTML document within another.","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\/how-to-use-selenium-iframes-in-woocommerce\/","og_locale":"en_US","og_type":"article","og_title":"How to use Selenium iFrames in WooCommerce - Webkul Blog","og_description":"iframe in selenium (selenium iframe) is HTML elements that allow web developers to embed one HTML document within another.","og_url":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-04-18T10:38:09+00:00","article_modified_time":"2023-05-10T13:49:24+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png","type":"","width":"","height":""}],"author":"Jitendra Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Jitendra Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/"},"author":{"name":"Jitendra Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/99dc56ae952ad7fe9d2c53c9b7073da0"},"headline":"How to use Selenium iFrames in WooCommerce","datePublished":"2023-04-18T10:38:09+00:00","dateModified":"2023-05-10T13:49:24+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/"},"wordCount":458,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png","keywords":["iframe","Selenium","WooCommerce"],"articleSection":["Automation testing","Testing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/","url":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/","name":"How to use Selenium iFrames in WooCommerce - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png","datePublished":"2023-04-18T10:38:09+00:00","dateModified":"2023-05-10T13:49:24+00:00","description":"iframe in selenium (selenium iframe) is HTML elements that allow web developers to embed one HTML document within another.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/iframe_in_selenium.png","width":783,"height":314,"caption":"iframe_in_selenium"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-use-selenium-iframes-in-woocommerce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to use Selenium iFrames in WooCommerce"}]},{"@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\/99dc56ae952ad7fe9d2c53c9b7073da0","name":"Jitendra Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1c8d4de619d7c3b4a35dde558fa19cedea3490169ff972780a7f0ecc335024a9?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\/1c8d4de619d7c3b4a35dde558fa19cedea3490169ff972780a7f0ecc335024a9?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Jitendra Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/jitendrakr-qa904\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376323","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\/507"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=376323"}],"version-history":[{"count":40,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376323\/revisions"}],"predecessor-version":[{"id":381037,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376323\/revisions\/381037"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=376323"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=376323"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=376323"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}