{"id":29742,"date":"2018-08-10T10:00:35","date_gmt":"2018-08-10T14:00:35","guid":{"rendered":"https:\/\/simpleprogrammer.com\/?p=29742"},"modified":"2018-08-09T22:03:20","modified_gmt":"2018-08-10T02:03:20","slug":"qa-engineer-habits","status":"publish","type":"post","link":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/","title":{"rendered":"7 Bad Habits to Avoid as a QA Engineer"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-29819 alignright\" src=\"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/bad-habits-square-300x300.png\" alt=\"\" width=\"280\" height=\"280\" \/>Most people would agree that software quality is important. We have seen the results of buggy software in all kinds of situations: from Mars probes malfunctioning and chemotherapy machines administering lethal doses of radiation, to telecommunications systems experiencing a cascade failure. It would seem logical to assume that software testers would be much-valued members of a development team. Yet sadly, that is not always the case.<\/p>\n<p>Some software developers, product owners, and managers assume that quality assurance (QA) engineers are people who wanted to be developers and lacked the necessary skill or grit to succeed. Unfortunately, there are a few testers who fit this description, but most testers are people who genuinely care about the quality of the product they are testing.<\/p>\n<p>Why then have testers gotten such a bad reputation? Usually, it\u2019s because of bad habits they have developed over the course of their careers.<\/p>\n<p>This article will outline seven habits that QA engineers should actively avoid and the good habits to replace them with, in order to ensure that QA engineers are doing high-quality work and earning the respect of their peers.<\/p>\n<h2>Bad Habit #1: Testing Things You Don\u2019t Understand<\/h2>\n<p>We\u2019ve all been there: There\u2019s some obscure story on the JIRA board that involves some legacy back-end code, and no one is entirely sure what the code does or how to change it. The developer tasked with the story has done enough research to fix the code but hasn\u2019t put any detail in the story about how it works or what change has been made. The developer says to you, \u201cJust run this request on this server, and if you get this response, then it\u2019s fixed.\u201d<\/p>\n<p>Here\u2019s the problem with this scenario: How do you know the developer is right? If the issue is not fixed, and there is a failure in production, your manager will come back to you with questions. Do you really want to have your only response be \u201cThe Dev told me to do this, and it worked, so I moved the story to Done\u201d?<\/p>\n<p><strong>The Good Habit: <\/strong>Ask questions. Ask your developer to explain to you how the feature works and what changes were made to it.<\/p>\n<p>Keep on asking clarifying questions until you really understand what is happening. In doing this, you may bring up points the developer hadn\u2019t thought of, sending them back to improve their work.<\/p>\n<p>Software developers are <a href=\"https:\/\/simpleprogrammer.com\/programmers-never-stop-learning\/\" target=\"_blank\" rel=\"noopener\">continuously learning<\/a>, and you should be as well. Listen to <a href=\"http:\/\/testinginthepub.co.uk\/testinginthepub\/\" target=\"_blank\" rel=\"noopener\">podcasts<\/a> and read <a href=\"http:\/\/thethinkingtester.blogspot.com\/\" target=\"_blank\" rel=\"noopener\">blog posts<\/a> to keep up with \u00a0the latest technology trends and testing strategies.<\/p>\n<h2>Bad Habit #2: Testing Only What the Story Tells You to Test<\/h2>\n<p>Our development stories often contain acceptance criteria (AC), which outline exactly how the new feature or fix should behave. These are often written by the product owner, and sometimes by the developer. The AC are helpful and are certainly better than having no AC at all, but they often contain only \u201cHappy Path\u201d scenarios.<\/p>\n<p>Even when the developer writes the AC, they may not include test scenarios where bugs could be hiding, not because they are trying to be duplicitous, but because the scenarios might not have occurred to them. Testers will often assume that the developer knows best and will test only the AC. This means that there may be critical areas that are left untested and bugs left undetected.<\/p>\n<p><strong>The Good Habit:<\/strong> <a href=\"https:\/\/www.amazon.com\/dp\/B01D33OG6E?tag=makithecompsi-20\" target=\"_blank\" rel=\"noopener\">Think outside the box.<\/a> One of our skills as QA engineers is being able to think about what might go wrong; we need to use this skill with every story we test.<\/p>\n<p>Before you sign off on the AC, ask yourself, \u201cCan I think of anything else to test here? Is there anything I\u2019ve missed?\u201d This will often help you find bugs in areas that no one else thought of.<\/p>\n<h2>Bad Habit #3: Assuming That Odd Behavior Is Correct Behavior<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-29820 alignright\" src=\"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/odd-habits-300x300.png\" alt=\"\" width=\"280\" height=\"280\" \/>Often, when we are testing a new feature, we run across behavior that doesn\u2019t make sense. Perhaps it\u2019s an odd page refresh or a navigation to a place we weren\u2019t expecting. Or perhaps a button appears where we weren\u2019t expecting one.<\/p>\n<p>It\u2019s easy when we are testing on a deadline to focus so much on the AC of the story that odd behavior gets pushed to the back of our mind. We might tell ourselves, \u201cI\u2019ll ask the Dev about that when this story is done,\u201d (and then we forget), or we say, \u201cWell, I\u2019m sure she knows what she\u2019s doing; it\u2019s probably supposed to do that.\u201d<\/p>\n<p><strong>The Good Habit:<\/strong> Listen to your instincts. If the behavior is odd, there\u2019s a very high probability that end users are going to find it odd as well; they may even find it so frustrating that they stop using the application.<\/p>\n<p>We need to remember that our end users are our customers. We are the last line of defense in making sure that they have a good experience with our application. If your instinct is telling you that something isn\u2019t quite right, document your testing and speak up about what you are seeing.<\/p>\n<h2>Bad Habit #4: Chasing Things Down the Rabbit Hole<\/h2>\n<p>This is the opposite of Bad Habit #3; sometimes QA engineers are so focused on finding every single thing wrong with an application, no matter how tiny, that they wind up in \u201canalysis paralysis\u201d and bring their team\u2019s progress to a halt.<\/p>\n<p>I remember asking a fellow QA engineer what her favorite bug was that she had found in the course of her career. She excitedly told me about a bug that involved clicking a button several times, navigating forward and backward through a pair of pages, and then scrolling quickly, all in one specific browser.<\/p>\n<p>While I\u2019m sure this bug was fun to chase down, it involved behaviors that a user would never, ever do, and the bug itself wasn\u2019t particularly harmful. I wondered how many other real issues she could have found while she was trying to reproduce this one obscure issue.<\/p>\n<p><strong>The Good Habit:<\/strong> Focus on real-world use cases. Always remember that our focus should be on making sure that our software works well for our users and that our software is well-protected from malicious users. We are not merely finding bugs for the joy of the hunt.<\/p>\n<p>If you find yourself going down the rabbit hole, ask yourself if your time could be better spent testing more realistic use cases.<\/p>\n<h2>Bad Habit #5: Automating Tests for the Sake of Doing Automation<\/h2>\n<p>QA engineers who have learned how to write automation discover that automating things is fun. There is a certain rush that comes with solving a technical challenge and watching your test run automatically.<\/p>\n<p>But automation is not always the answer. When we have a new feature to test, it\u2019s important to take time and get to know the feature as an end user would by actually using the feature. When we jump into automation before we\u2019ve done this, we can wind up automating tests that don\u2019t exercise the feature well.<\/p>\n<p>We can also miss key features. For example, if we had a new search feature that searches by a date range, an automation engineer might spend all their time figuring out how to pick dates using Selenium test software and never notice that it was possible to enter in a start date that was after the end date.<\/p>\n<p><strong>The Good Habit:<\/strong> Take the time to do manual, exploratory testing to get to know a feature. Ask questions about how the feature will be used. Think about what your end users will do. Find as many bugs as you can. Then, start to think about <a href=\"https:\/\/joecolantonio.com\/testtalks\/\" target=\"_blank\" rel=\"noopener\">how you should automate it<\/a>.<\/p>\n<h2>Bad Habit #6: Creating Complicated and Flaky Tests<\/h2>\n<p>When I first learned how to automate user interface (UI) tests with Selenium, I automated them like they were manual tests. My tests had lots of steps and implicit waits. The more steps a test has, the more likely it is that some test step will fail, causing the entire test to fail. Implicit waits are unreliable because waiting for a set number of seconds does not guarantee that the element will become present and clickable in that time.<\/p>\n<p>Consequently, my tests were extremely flaky.<\/p>\n<p>Every morning when I arrived at work, I checked to see which tests had failed and reran all of the failures. Then I would tinker with the tests that had failed a second time to see if I could get them to work correctly. This was a tremendous waste of my time.<\/p>\n<p><strong>The Good Habit:<\/strong> Remember that the point of automation is to make your work easier, freeing you up to do more exploratory testing.<\/p>\n<p>Automated tests should be simple, with each test checking only one thing. Take a look at your UI tests and see if they could be <a href=\"https:\/\/simpleprogrammer.com\/api-testing\/\" target=\"_blank\" rel=\"noopener\">automated with API tests<\/a> instead. Application programming interface (API) tests are faster and more reliable than UI tests because they don\u2019t rely on responses from the browser. When a UI test is needed, be sure to use explicit waits rather than implicit waits to reduce flakiness.<\/p>\n<h2>Bad Habit #7: Accepting a Poor User Experience<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-29821 alignright\" src=\"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/user-300x300.png\" alt=\"\" width=\"280\" height=\"280\" \/>Sometimes, when we are working on a deadline and have many stories to test, we look only at the functionality of a feature. If the feature works and has no bugs, we call it done and move on.<\/p>\n<p>But it\u2019s important to remember the end users. If a user doesn\u2019t understand what to do on the page or finds that they have to click several times in order to get something done, they will be frustrated and won\u2019t want to use the product.<\/p>\n<p>I saw an example of this recently when I was asked to fill out a survey. The questions I was asked required long answers, but the survey fields were so small that I could only see one line at a time, making it difficult to type and proofread my entry. I\u2019m sure that the QA engineers that tested the product verified that the field could be typed in and that the entry was saved, but they didn\u2019t consider how difficult it would be to use.<\/p>\n<p><b>The Good Habit:<\/b> <span style=\"font-weight: 400;\">Always think of your end users when testing your application. Find out from your product owner what the<\/span> expected workflows are and run through those workflows. Ask yourself what you would think of the product\u2019s behavior if you were the end user rather than the tester. If the behavior would frustrate you, advocate for a change in the behavior.<\/p>\n<h2>Remember Why You Are Testing<\/h2>\n<p>In our daily work as testers, it\u2019s easy to get distracted by deadlines and technical challenges. We are great at focusing on the minutiae of software, which is why we are good at finding bugs. But we must never lose sight of why our company exists: to create software that people will use.<\/p>\n<p>The end result of all of our tasks must be the assurance that a user will be able to use our product intuitively, safely, and easily. When we consistently focus on the quality of the products our team is delivering, we earn the reputation of being effective QA engineers as well as the respect and trust of our developers, product owners, and leaders.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most people would agree that software quality is important. We have seen the results of buggy software in all kinds of situations: from Mars probes malfunctioning and chemotherapy machines administering lethal doses of radiation, to telecommunications systems experiencing a cascade failure. It would seem logical to assume that software testers would be much-valued members of&#8230;<\/p>\n","protected":false},"author":1122,"featured_media":29818,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[162229812,44070,415,31679,162229803,5895,12],"tags":[],"class_list":["post-29742","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-advice","category-automation","category-guest-post","category-process-improvement","category-programming","category-self-improvement","category-testing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>7 Bad Habits to Avoid as a QA Engineer - Simple Programmer<\/title>\n<meta name=\"description\" content=\"Have you fallen into bad QA Engineer habits? This post will describe some common habits that keep testers from performing at their best.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"7 Bad Habits to Avoid as a QA Engineer - Simple Programmer\" \/>\n<meta property=\"og:description\" content=\"Have you fallen into bad QA Engineer habits? This post will describe some common habits that keep testers from performing at their best.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/\" \/>\n<meta property=\"og:site_name\" content=\"Simple Programmer\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-10T14:00:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/7-BAd-habits.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"7 Bad Habits to Avoid as a QA Engineer\",\"datePublished\":\"2018-08-10T14:00:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/\"},\"wordCount\":1906,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/simpleprogrammer.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/7-BAd-habits.png\",\"articleSection\":[\"Advice\",\"Automation\",\"Guest Post\",\"Process Improvement\",\"Programming\",\"Self Improvement\",\"Testing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/\",\"url\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/\",\"name\":\"7 Bad Habits to Avoid as a QA Engineer - Simple Programmer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/simpleprogrammer.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/7-BAd-habits.png\",\"datePublished\":\"2018-08-10T14:00:35+00:00\",\"author\":{\"@id\":\"\"},\"description\":\"Have you fallen into bad QA Engineer habits? This post will describe some common habits that keep testers from performing at their best.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/#primaryimage\",\"url\":\"https:\\\/\\\/simpleprogrammer.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/7-BAd-habits.png\",\"contentUrl\":\"https:\\\/\\\/simpleprogrammer.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/7-BAd-habits.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/qa-engineer-habits\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/simpleprogrammer.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"7 Bad Habits to Avoid as a QA Engineer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/#website\",\"url\":\"https:\\\/\\\/simpleprogrammer.com\\\/\",\"name\":\"Simple Programmer\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/simpleprogrammer.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"\",\"url\":\"https:\\\/\\\/simpleprogrammer.com\\\/author\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"7 Bad Habits to Avoid as a QA Engineer - Simple Programmer","description":"Have you fallen into bad QA Engineer habits? This post will describe some common habits that keep testers from performing at their best.","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:\/\/simpleprogrammer.com\/qa-engineer-habits\/","og_locale":"en_US","og_type":"article","og_title":"7 Bad Habits to Avoid as a QA Engineer - Simple Programmer","og_description":"Have you fallen into bad QA Engineer habits? This post will describe some common habits that keep testers from performing at their best.","og_url":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/","og_site_name":"Simple Programmer","article_published_time":"2018-08-10T14:00:35+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/7-BAd-habits.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/#article","isPartOf":{"@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/"},"author":{"name":"","@id":""},"headline":"7 Bad Habits to Avoid as a QA Engineer","datePublished":"2018-08-10T14:00:35+00:00","mainEntityOfPage":{"@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/"},"wordCount":1906,"commentCount":0,"image":{"@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/#primaryimage"},"thumbnailUrl":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/7-BAd-habits.png","articleSection":["Advice","Automation","Guest Post","Process Improvement","Programming","Self Improvement","Testing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/simpleprogrammer.com\/qa-engineer-habits\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/","url":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/","name":"7 Bad Habits to Avoid as a QA Engineer - Simple Programmer","isPartOf":{"@id":"https:\/\/simpleprogrammer.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/#primaryimage"},"image":{"@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/#primaryimage"},"thumbnailUrl":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/7-BAd-habits.png","datePublished":"2018-08-10T14:00:35+00:00","author":{"@id":""},"description":"Have you fallen into bad QA Engineer habits? This post will describe some common habits that keep testers from performing at their best.","breadcrumb":{"@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/simpleprogrammer.com\/qa-engineer-habits\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/#primaryimage","url":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/7-BAd-habits.png","contentUrl":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2018\/08\/7-BAd-habits.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/simpleprogrammer.com\/qa-engineer-habits\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/simpleprogrammer.com\/"},{"@type":"ListItem","position":2,"name":"7 Bad Habits to Avoid as a QA Engineer"}]},{"@type":"WebSite","@id":"https:\/\/simpleprogrammer.com\/#website","url":"https:\/\/simpleprogrammer.com\/","name":"Simple Programmer","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/simpleprogrammer.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"","url":"https:\/\/simpleprogrammer.com\/author\/"}]}},"_links":{"self":[{"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/posts\/29742","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/users\/1122"}],"replies":[{"embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/comments?post=29742"}],"version-history":[{"count":0,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/posts\/29742\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/media\/29818"}],"wp:attachment":[{"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/media?parent=29742"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/categories?post=29742"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/tags?post=29742"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}