{"id":688,"date":"2019-12-05T13:39:22","date_gmt":"2019-12-05T08:09:22","guid":{"rendered":"http:\/\/http:\/\/artoftesting.com\/\/?p=688"},"modified":"2023-06-13T12:47:59","modified_gmt":"2023-06-13T07:17:59","slug":"right-click-in-selenium-webdriver-java","status":"publish","type":"post","link":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java","title":{"rendered":"Right Click in Selenium WebDriver"},"content":{"rendered":"\n<p>Hello friends, quite often during automation we need to right-click or context-click an element. Usually, this action is followed up by pressing the UP\/DOWN arrow keys and ENTER key to select the desired context menu element.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Check our tutorial on pressing the non-text keys in Selenium &#8211;\u00a0<a href=\"http:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\">Pressing ARROW KEYS, FUNCTION KEYS and other non-text keys in Selenium<\/a>.<\/p>\n<\/blockquote>\n\n\n\n<p><br>To right click in Selenium, we make use of the Actions class. The Actions class provided by Selenium Webdriver is used to generate complex user gestures including right click, double click, drag and drop, etc.<br><br><\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_73 counter-flat ez-toc-counter ez-toc-custom ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\"><p class=\"ez-toc-title\" style=\"cursor:inherit\">Content<\/p>\n<\/div><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\/#Code_Snippet_to_Right_click_in_Selenium\" title=\"Code Snippet to Right click in Selenium\">Code Snippet to Right click in Selenium<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\/#Sample_Code_to_right-click_an_Element\" title=\"Sample Code to right-click an Element\">Sample Code to right-click an Element<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Code_Snippet_to_Right_click_in_Selenium\"><\/span>Code Snippet to Right click in Selenium<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; gutter: false; title: ; notranslate\" title=\"\">\nActions action = new Actions(driver);\nWebElement element = driver.findElement(By.id(&quot;elementId&quot;));\naction.contextClick(element).perform();\n<\/pre><\/div>\n\n\n<p>Here, we are instantiating an object of the Actions class. After that, we pass the WebElement to be right-clicked as a parameter to the contestClick() method present in the Actions class. Then, we call the perform() method to perform the generated action.<br><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Sample_Code_to_right-click_an_Element\"><\/span>Sample Code to right-click an Element<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>For the demonstration of the right-click action, we will be launching\u00a0<a href=\"http:\/\/artoftesting.com\/samplesiteforselenium\">Sample Site for Selenium Learning<\/a>. Then we will right-click a textbox after which its context menu will get displayed, asserting that right click action is successfully performed.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\npackage seleniumTutorials;\n\nimport org.openqa.selenium.By;\nimport org.openqa.selenium.WebDriver;\nimport org.openqa.selenium.WebElement;\nimport org.openqa.selenium.firefox.FirefoxDriver;\nimport org.openqa.selenium.interactions.Actions;\n\npublic class RightClick {\n\t\n\tpublic static void main(String&#x5B;] args) throws InterruptedException{\n\t\tWebDriver driver = new FirefoxDriver();\n\t\t\n\t\t\/\/Launching Sample site\n\t\tdriver.get(&quot;http:\/\/artoftesting.com\/samplesiteforselenium&quot;);\n\t\t\n\t\t\/\/Right click in the TextBox\n\t\tActions action = new Actions(driver);\n\t\tWebElement searchBox = driver.findElement(By.id(&quot;fname&quot;));\n\t\taction.contextClick(searchBox).perform();\n\t\t\n\t\t\/\/Thread.sleep just for user to notice the event\n\t\tThread.sleep(3000);\n\t\t\n\t\t\/\/Closing the driver instance\n\t\tdriver.quit();\n\t}\n}\n<\/pre><\/div>\n\n\n<p>That&#8217;s all we have in this post, share it will your friends. If you have any questions please comment below. Check out the complete Selenium tutorial here.  <\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-default is-layout-flow wp-block-quote-is-layout-flow\">\n<p><a href=\"http:\/\/artoftesting.com\/selenium-tutorial\">Selenium Tutorial<\/a><\/p>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Hello friends, quite often during automation we need to right-click or context-click an element. Usually, this action is followed up by pressing the UP\/DOWN arrow keys and ENTER key to select the desired context menu element. Check our tutorial on pressing the non-text keys in Selenium &ndash;&nbsp;Pressing ARROW KEYS, FUNCTION KEYS and other non-text keys &#8230; <a title=\"Right Click in Selenium WebDriver\" class=\"read-more\" href=\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\" aria-label=\"Read more about Right Click in Selenium WebDriver\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1601,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-688","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-selenium"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Right Click in Selenium WebDriver with Java | ArtOfTesting<\/title>\n<meta name=\"description\" content=\"Right Click or context click an element using Selenium WebDriver with Java.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Right Click in Selenium WebDriver with Java | ArtOfTesting\" \/>\n<meta property=\"og:description\" content=\"Right Click or context click an element using Selenium WebDriver with Java.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\" \/>\n<meta property=\"og:site_name\" content=\"ArtOfTesting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/artoftesting\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-05T08:09:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-13T07:17:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kuldeep Rana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@theartoftesting\" \/>\n<meta name=\"twitter:site\" content=\"@theartoftesting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kuldeep Rana\" \/>\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:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#article\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\"},\"author\":{\"name\":\"Kuldeep Rana\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\"},\"headline\":\"Right Click in Selenium WebDriver\",\"datePublished\":\"2019-12-05T08:09:22+00:00\",\"dateModified\":\"2023-06-13T07:17:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\"},\"wordCount\":221,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg\",\"articleSection\":[\"Selenium\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\",\"url\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\",\"name\":\"Right Click in Selenium WebDriver with Java | ArtOfTesting\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#primaryimage\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg\",\"datePublished\":\"2019-12-05T08:09:22+00:00\",\"dateModified\":\"2023-06-13T07:17:59+00:00\",\"description\":\"Right Click or context click an element using Selenium WebDriver with Java.\",\"breadcrumb\":{\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#primaryimage\",\"url\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg\",\"contentUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg\",\"width\":700,\"height\":400,\"caption\":\"Right Click in Selenium\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/artoftesting.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automation Testing\",\"item\":\"https:\/\/artoftesting.com\/category\/automation-testing\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Selenium\",\"item\":\"https:\/\/artoftesting.com\/category\/automation-testing\/selenium\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Right Click in Selenium WebDriver\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/artoftesting.com\/#website\",\"url\":\"https:\/\/artoftesting.com\/\",\"name\":\"ArtOfTesting\",\"description\":\"A Beginners Guide to Testing\",\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/artoftesting.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/artoftesting.com\/#organization\",\"name\":\"ArtOfTesting\",\"url\":\"https:\/\/artoftesting.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png\",\"contentUrl\":\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png\",\"width\":400,\"height\":60,\"caption\":\"ArtOfTesting\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/artoftesting\",\"https:\/\/x.com\/theartoftesting\",\"https:\/\/www.linkedin.com\/groups\/4797819\/\",\"https:\/\/in.pinterest.com\/artoftesting\/\",\"https:\/\/www.youtube.com\/channel\/UCQ9PUVenvvyrUdDQ9yKn31Q\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\",\"name\":\"Kuldeep Rana\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g\",\"caption\":\"Kuldeep Rana\"},\"description\":\"Kuldeep is the founder and lead author of ArtOfTesting. He is skilled in test automation, performance testing, big data, and CI-CD. He brings his decade of experience to his current role where he is dedicated to educating the QA professionals.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Right Click in Selenium WebDriver with Java | ArtOfTesting","description":"Right Click or context click an element using Selenium WebDriver with Java.","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:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java","og_locale":"en_US","og_type":"article","og_title":"Right Click in Selenium WebDriver with Java | ArtOfTesting","og_description":"Right Click or context click an element using Selenium WebDriver with Java.","og_url":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java","og_site_name":"ArtOfTesting","article_publisher":"https:\/\/facebook.com\/artoftesting","article_published_time":"2019-12-05T08:09:22+00:00","article_modified_time":"2023-06-13T07:17:59+00:00","og_image":[{"width":700,"height":400,"url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg","type":"image\/jpeg"}],"author":"Kuldeep Rana","twitter_card":"summary_large_image","twitter_creator":"@theartoftesting","twitter_site":"@theartoftesting","twitter_misc":{"Written by":"Kuldeep Rana","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#article","isPartOf":{"@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java"},"author":{"name":"Kuldeep Rana","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5"},"headline":"Right Click in Selenium WebDriver","datePublished":"2019-12-05T08:09:22+00:00","dateModified":"2023-06-13T07:17:59+00:00","mainEntityOfPage":{"@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java"},"wordCount":221,"commentCount":3,"publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"image":{"@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg","articleSection":["Selenium"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#respond"]}]},{"@type":"WebPage","@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java","url":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java","name":"Right Click in Selenium WebDriver with Java | ArtOfTesting","isPartOf":{"@id":"https:\/\/artoftesting.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#primaryimage"},"image":{"@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg","datePublished":"2019-12-05T08:09:22+00:00","dateModified":"2023-06-13T07:17:59+00:00","description":"Right Click or context click an element using Selenium WebDriver with Java.","breadcrumb":{"@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#primaryimage","url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg","contentUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Right-Click-in-Selenium.jpg","width":700,"height":400,"caption":"Right Click in Selenium"},{"@type":"BreadcrumbList","@id":"https:\/\/artoftesting.com\/right-click-in-selenium-webdriver-java#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/artoftesting.com\/"},{"@type":"ListItem","position":2,"name":"Automation Testing","item":"https:\/\/artoftesting.com\/category\/automation-testing"},{"@type":"ListItem","position":3,"name":"Selenium","item":"https:\/\/artoftesting.com\/category\/automation-testing\/selenium"},{"@type":"ListItem","position":4,"name":"Right Click in Selenium WebDriver"}]},{"@type":"WebSite","@id":"https:\/\/artoftesting.com\/#website","url":"https:\/\/artoftesting.com\/","name":"ArtOfTesting","description":"A Beginners Guide to Testing","publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/artoftesting.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/artoftesting.com\/#organization","name":"ArtOfTesting","url":"https:\/\/artoftesting.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/","url":"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png","contentUrl":"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png","width":400,"height":60,"caption":"ArtOfTesting"},"image":{"@id":"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/artoftesting","https:\/\/x.com\/theartoftesting","https:\/\/www.linkedin.com\/groups\/4797819\/","https:\/\/in.pinterest.com\/artoftesting\/","https:\/\/www.youtube.com\/channel\/UCQ9PUVenvvyrUdDQ9yKn31Q"]},{"@type":"Person","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5","name":"Kuldeep Rana","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g","caption":"Kuldeep Rana"},"description":"Kuldeep is the founder and lead author of ArtOfTesting. He is skilled in test automation, performance testing, big data, and CI-CD. He brings his decade of experience to his current role where he is dedicated to educating the QA professionals."}]}},"_links":{"self":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/688","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/comments?post=688"}],"version-history":[{"count":2,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/688\/revisions"}],"predecessor-version":[{"id":7164,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/688\/revisions\/7164"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media\/1601"}],"wp:attachment":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media?parent=688"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/categories?post=688"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/tags?post=688"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}