{"id":393,"date":"2015-03-12T10:48:34","date_gmt":"2015-03-12T10:48:34","guid":{"rendered":"http:\/\/blog.devexperts.com\/?p=393"},"modified":"2022-05-18T10:57:50","modified_gmt":"2022-05-18T10:57:50","slug":"gui-automation-difficulties-when-marketing-collides-with-real-life","status":"publish","type":"post","link":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/","title":{"rendered":"Pitfalls of Graphic User Interface Test Automation and How to Overcome Them"},"content":{"rendered":"\r\n<div class=\"wp-block-image\"><figure class=\"alignright\"><a href=\"https:\/\/devexperts.com\/blog\/app\/uploads\/2015\/03\/mvc_pic.001.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/devexperts.com\/blog\/app\/uploads\/2015\/03\/mvc_pic.001-300x225.jpg\" alt=\"mvc_pic.001\" class=\"wp-image-408\" srcset=\"https:\/\/devexperts.com\/blog\/app\/uploads\/2015\/03\/mvc_pic.001-300x225.jpg 300w, https:\/\/devexperts.com\/blog\/app\/uploads\/2015\/03\/mvc_pic.001.jpg 1024w\" sizes=\"auto, (max-width: 959px) calc(100vw - 30px), 870px\" \/><\/a><\/figure><\/div>\r\n\r\n\r\n\r\n<p> Usually, it is a good practice to automate any kind of routine. In testing, automation is vital. It helps decrease costs, makes testing tasks faster, and improves the efficiency of your staff. It is a \u201cno-brainer\u201d to think about automating different testing tasks, especially when reading marketing materials or listening to a sales presentation of a \u201cleading-edge-premier\u201d robot software. Those reports are usually based on success stories from the world of the most complicated user interfaces &#8211; CAD software, graphics software, or maybe some examples of extremely complex but good web design. Moreover, usually, these reports are true. But you should think carefully before starting a GUI test automation project. In many areas of software development, GUI automation is not so easy and obvious, and your entire automation project can quickly turn into a disaster, despite the visual attractiveness of the tools.<\/p>\r\n\r\n\r\n\r\n<h2 id=\"h-beware-\" class=\"wp-block-heading\">Beware <\/h2>\r\n\r\n\r\n\r\n<p>First, let&#8217;s understand where GUI automation can fail:<\/p>\r\n\r\n\r\n\r\n<ol class=\"wp-block-list\"><li>Your project is a distributed system, which consists not only of a GUI-side, but also of a server-side, and maybe, some <g class=\"gr_ gr_6 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace\" id=\"6\" data-gr-id=\"6\">middle tier<\/g><\/li><li>Your GUI-side is built on highly customized (skinned, smart, <g class=\"gr_ gr_9 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-ins replaceWithoutSep\" id=\"9\" data-gr-id=\"9\">etc<\/g>) controls<\/li><li>You not only want to act upon your <g class=\"gr_ gr_8 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-del replaceWithoutSep\" id=\"8\" data-gr-id=\"8\">software,<\/g> but also verify the result of your action<\/li><li>You can&#8217;t &#8220;save&#8221; the result of your session in the GUI<a name=\"_ftnref1\" href=\"#_ftn1\">[1]<\/a><\/li><\/ol>\r\n\r\n\r\n\r\n<p>If any of these points are applicable to your GUI automation project, continue reading.<\/p>\r\n\r\n\r\n\r\n<h2 id=\"h-custom-controls-\" class=\"wp-block-heading\">Custom Controls <\/h2>\r\n\r\n\r\n\r\n<p>In a world where look and feel in software are key for successful marketing, customization of standard GUI controls set is a must. Nothing should stop you from making your controls more attractive to the user, and skinning is one of the easiest ways to bring a fresh look. Some of the features that make your controls smarter (such as autofill, or tree-view structures in initially flat-structured controls), may deliver more clarity and usability to the user, but may also become a nightmare for your automation team. Modern robots are usually technology independent or at least compatible with all common programming languages (they will work equally well with Microsoft .net interface, or java Swing\/SWT GUI) &#8211; but usually they can only easily recognize standard controls. Even if you just added some background skinning to the standard ListView control (i.e. inherited from a standard class), you still have a risk that this customization will lead to the manual mapping of such a control. In this case, you&#8217;ll be forced to explain everything about this control to the robot. This is particularly important when you need to find some element of the control to click on, or invoke the context menu, etc. While this is not a show-stopping problem, it can have a serious impact on the automation effort.<\/p>\r\n\r\n\r\n\r\n<p>Another problem, specific to Swing interfaces, is the dynamic controls naming. Very often, programmers do not make an effort to name each and every control in their interface, letting java machine do this work for them in runtime. In this case, GUI automation becomes impossible until you agree on a strict naming convention, and force the developers to implement it.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Validation <\/h2>\r\n\r\n\r\n\r\n<p>To automate an action or even long sequences of actions in the interface is usually a simple task, which doesn\u2019t even require special programming skills. You just use the robot\u2019s built-in recorder and that&#8217;s it. Easy \u2013 and it works, too. But in testing, actions are frequently performed to validate the output of the software, and this is where things get complicated. If you are strictly using standard controls with which the robot is familiar, and your result is a highly predictable number or string not containing any variables, the task can still be performed with virtually no programming (robots have a complete set of built-in comparison tools for that). <\/p>\r\n\r\n\r\n\r\n<p>If your software has some kind of &#8220;save&#8221; or export function, you can use the full range of external comparators (including your own utilities) to validate large data sets or complicated file formats. But what if your controls are not readable by the robot? Then the resulting number may be seen on a screen, but may not be easily reached by the robot, because it might have been rendered on a custom-label interface element chosen for its popularity among your programmers and your software fans. <\/p>\r\n\r\n\r\n\r\n<p>Most robots have a built-in bitmap comparator, which can be useful in certain cases &#8211; such as making screenshots and comparing them to a reference screenshot &#8211; but this is not the best way to compare numbers. Imagine if an output value is calculated from several different values displayed in runtime simultaneously on the screen, and cannot be predicted in advance. Since an automation script should be highly reusable, and any bitmap comparison depends on factors such as screen resolution, interface layout, font sizes, etc, this is a strong argument not to use this method.<\/p>\r\n\r\n\r\n\r\n<p>Some robots provide special libraries, plugins, etc, that can be injected into your software during the build (compilation) process. While this gives you access to a variety of controls, in 99% of cases you will not want to provide such a build to the end-user, because it&#8217;s not the best decision from either security or performance standpoints. It forces you to test one build and deliver another one, which is also not the best idea. Moreover, this kind of injection, will not guarantee you 100% success in reaching the information inside your controls.<\/p>\r\n\r\n\r\n\r\n<h2 id=\"h-thick-client-\" class=\"wp-block-heading\">Thick Client <\/h2>\r\n\r\n\r\n\r\n<p>All of the problems described above can be annoying, but you can still deal with them one way or another. The next level of complexity is brought by a client-server architecture with a thick client concept. Usually, a thick client needs a connection to the server-side, but performs many actions on its own &#8211; such as asynchronously requesting and receiving data from the server. <\/p>\r\n\r\n\r\n\r\n<p>The asynchronous nature of those operations can often be addressed by queuing all the actions performed by the testing script &#8211; inserting delays, wait functions, and other result-catching activities. But while this process establishes an artificial synchronization between client and server, it also slows down test execution significantly. Now imagine if, in addition to this, the application under test has some triggers that cause overlapping, modal windows, messages, warning panels, tabs, etc., after the data is pushed from the server. <\/p>\r\n\r\n\r\n\r\n<p>All this causes uncertainty to your test script, and the script creator is forced to predict and manage all possible actions. Moreover, some of those windows and messages can inform the end-user that some vital conditions of the application execution have changed, for example, that connection to the server has been lost. In this case, you\u2019ll need to add some level of heuristics to determine all the correct conditions, or just accept that all subsequent actions will fail. <\/p>\r\n\r\n\r\n\r\n<p>While trying to manage the many possibilities of behavior of such an application, it may become logical to take full control over the server-side during script execution. At this point, you may suddenly face the fact that your robot doesn\u2019t have enough power to do that, or that the tools you already have for this control are not compatible with the robot, and that it will be a significant effort to fix that. And since this effort was not initially planned it will surely extend your project timeframes and costs.<\/p>\r\n\r\n\r\n\r\n<p>At this stage your test script will become a complex and long-lasting routine, requiring optimizations, splitting, and parallelism to gain durability and save execution time. Accomplishing these optimizations is closely related to the testing environment.<\/p>\r\n\r\n\r\n\r\n<h2 id=\"h-environment-\" class=\"wp-block-heading\">Environment <\/h2>\r\n\r\n\r\n\r\n<p>Execution facilities for testing are a very important aspect of any testing process. Automation puts some additional requirements on this environment. Virtualization technologies and cloud computing have changed substantially in testing lab deployment, and today it\u2019s possible to set up a flexible testing environment in a corporate or even public cloud within minutes. But this usually implies remote access to the virtual hosts. <\/p>\r\n\r\n\r\n\r\n<p>The question is how will the robot survive when the remote connection is down. Of course, it will depend on many factors, including OS, remote connection tool, its settings, etc., but as practice shows, robots are helpless when the whole desktop and mouse context are suddenly gone. The most common mistake is to underestimate these environmental issues at the very beginning of the automation project. <\/p>\r\n\r\n\r\n\r\n<p>This leads to very \u201ccreative\u201d solutions on later stages, when the simplicity of the script and parallel execution and other processes aimed at the durability of the script, are totally offset by the overcomplicated and unstable configuration of the test lab.<\/p>\r\n\r\n\r\n\r\n<p><strong>In conclusion,<\/strong> a decision to start an automation project, or buy a new super-clicking robot, can\u2019t be made just by looking at the robot\u2019s list of features. Software, which is supposed to be tested, needs proper analysis and skilled resources assigned to its project. The following can be used as a control checklist: <\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li>What kind of controls are used in the target application? Does the tool support them? How many modifications are made to these controls? How difficult is the controls\u2019 mapping process inside a robot?<\/li><li>The robot can act, but how is the result going to be validated? Is all the data required for this purpose available to the robot?<\/li><li>Can the robot itself control the backend? Do I have the tools to control the backend? Can these tools be easily synced with the robot?<\/li><li>Do I have enough programming resources for that kind of project? (Just recording and replaying is a myth!) Is the application itself ready for automation? What exactly is required to make it ready?<\/li><li>What is the application\u2019s lifecycle? Would it be possible to execute the final test script at least 10 times? Is it possible to split everything into smaller parts and execute them in parallel?<\/li><li>What environment will be used for testing? In case of virtualization\/remote connection &#8211; is the robot compatible with the technologies which are going to be used?<\/li><\/ul>\r\n\r\n\r\n\r\n<p>If all of your questions have been answered, go ahead and start your own automation project, it has a good chance of being successful.<\/p>\r\n\r\n\r\n\r\n<p><a name=\"_ftn1\" href=\"#_ftnref1\">[1]<\/a> In some programs you do not produce any storable result as in word-processors or graphics editors, they are built just for session-based work. For example: trading software, some games, or in the simplest case  \u2013  calculators.<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Usually, it is a good practice to automate any kind of routine. In testing, automation is vital. It helps decrease &hellip; <\/p>\n","protected":false},"author":17,"featured_media":1668,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2020],"tags":[1384,36,25],"class_list":["post-393","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-fintech","tag-automation","tag-development","tag-qa"],"acf":{"nifty_post_card_image":null,"nifty_post_card_index_big":null,"nifty_post_inner_image":null,"nifty_post_card_banner":null},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Pitfalls of Graphic User Interface Test Automation \u2013 Devexperts Blog<\/title>\n<meta name=\"description\" content=\"Think carefully before starting a GUI test automation project, Use our checklist to see if you are ready to undertake such a project.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pitfalls of Graphic User Interface Test Automation and How to Overcome Them\" \/>\n<meta property=\"og:description\" content=\"Think carefully before starting a GUI test automation project, Use our checklist to see if you are ready to undertake such a project.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/\" \/>\n<meta property=\"og:site_name\" content=\"Devexperts Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/devexperts\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-03-12T10:48:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-18T10:57:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3840\" \/>\n\t<meta property=\"og:image:height\" content=\"700\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Mike Chiniakov\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@devexperts\" \/>\n<meta name=\"twitter:site\" content=\"@devexperts\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mike Chiniakov\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/\"},\"author\":{\"name\":\"Mike Chiniakov\"},\"headline\":\"Pitfalls of Graphic User Interface Test Automation and How to Overcome Them\",\"datePublished\":\"2015-03-12T10:48:34+00:00\",\"dateModified\":\"2022-05-18T10:57:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/\"},\"wordCount\":1720,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/devexperts.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png\",\"keywords\":[\"automation\",\"development\",\"QA\"],\"articleSection\":[\"Fintech\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/\",\"url\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/\",\"name\":\"Pitfalls of Graphic User Interface Test Automation \u2013 Devexperts Blog\",\"isPartOf\":{\"@id\":\"https:\/\/devexperts.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png\",\"datePublished\":\"2015-03-12T10:48:34+00:00\",\"dateModified\":\"2022-05-18T10:57:50+00:00\",\"description\":\"Think carefully before starting a GUI test automation project, Use our checklist to see if you are ready to undertake such a project.\",\"breadcrumb\":{\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#primaryimage\",\"url\":\"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png\",\"contentUrl\":\"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png\",\"width\":3840,\"height\":700},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/devexperts.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Pitfalls of Graphic User Interface Test Automation and How to Overcome Them\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/devexperts.com\/blog\/#website\",\"url\":\"https:\/\/devexperts.com\/blog\/\",\"name\":\"Devexperts Blog\",\"description\":\"We make complex finance ideas on technology, innovation and business simple\",\"publisher\":{\"@id\":\"https:\/\/devexperts.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/devexperts.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/devexperts.com\/blog\/#organization\",\"name\":\"Devexperts LLC\",\"url\":\"https:\/\/devexperts.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/devexperts.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/devexperts.com\/blog\/app\/uploads\/2019\/08\/DX-logo.png\",\"contentUrl\":\"https:\/\/devexperts.com\/blog\/app\/uploads\/2019\/08\/DX-logo.png\",\"width\":167,\"height\":30,\"caption\":\"Devexperts LLC\"},\"image\":{\"@id\":\"https:\/\/devexperts.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/devexperts\/\",\"https:\/\/x.com\/devexperts\",\"https:\/\/www.linkedin.com\/company\/devexperts\",\"https:\/\/www.youtube.com\/channel\/UCF3FRmes2KrcVsTXQ1aAB5w\/featured\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Pitfalls of Graphic User Interface Test Automation \u2013 Devexperts Blog","description":"Think carefully before starting a GUI test automation project, Use our checklist to see if you are ready to undertake such a project.","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:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/","og_locale":"en_US","og_type":"article","og_title":"Pitfalls of Graphic User Interface Test Automation and How to Overcome Them","og_description":"Think carefully before starting a GUI test automation project, Use our checklist to see if you are ready to undertake such a project.","og_url":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/","og_site_name":"Devexperts Blog","article_publisher":"https:\/\/www.facebook.com\/devexperts\/","article_published_time":"2015-03-12T10:48:34+00:00","article_modified_time":"2022-05-18T10:57:50+00:00","og_image":[{"width":3840,"height":700,"url":"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png","type":"image\/png"}],"author":"Mike Chiniakov","twitter_card":"summary_large_image","twitter_creator":"@devexperts","twitter_site":"@devexperts","twitter_misc":{"Written by":"Mike Chiniakov","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#article","isPartOf":{"@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/"},"author":{"name":"Mike Chiniakov"},"headline":"Pitfalls of Graphic User Interface Test Automation and How to Overcome Them","datePublished":"2015-03-12T10:48:34+00:00","dateModified":"2022-05-18T10:57:50+00:00","mainEntityOfPage":{"@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/"},"wordCount":1720,"commentCount":0,"publisher":{"@id":"https:\/\/devexperts.com\/blog\/#organization"},"image":{"@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#primaryimage"},"thumbnailUrl":"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png","keywords":["automation","development","QA"],"articleSection":["Fintech"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/","url":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/","name":"Pitfalls of Graphic User Interface Test Automation \u2013 Devexperts Blog","isPartOf":{"@id":"https:\/\/devexperts.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#primaryimage"},"image":{"@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#primaryimage"},"thumbnailUrl":"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png","datePublished":"2015-03-12T10:48:34+00:00","dateModified":"2022-05-18T10:57:50+00:00","description":"Think carefully before starting a GUI test automation project, Use our checklist to see if you are ready to undertake such a project.","breadcrumb":{"@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#primaryimage","url":"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png","contentUrl":"https:\/\/devexperts.com\/blog\/app\/uploads\/2017\/08\/purple-full.png","width":3840,"height":700},{"@type":"BreadcrumbList","@id":"https:\/\/devexperts.com\/blog\/gui-automation-difficulties-when-marketing-collides-with-real-life\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/devexperts.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Pitfalls of Graphic User Interface Test Automation and How to Overcome Them"}]},{"@type":"WebSite","@id":"https:\/\/devexperts.com\/blog\/#website","url":"https:\/\/devexperts.com\/blog\/","name":"Devexperts Blog","description":"We make complex finance ideas on technology, innovation and business simple","publisher":{"@id":"https:\/\/devexperts.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/devexperts.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/devexperts.com\/blog\/#organization","name":"Devexperts LLC","url":"https:\/\/devexperts.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/devexperts.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/devexperts.com\/blog\/app\/uploads\/2019\/08\/DX-logo.png","contentUrl":"https:\/\/devexperts.com\/blog\/app\/uploads\/2019\/08\/DX-logo.png","width":167,"height":30,"caption":"Devexperts LLC"},"image":{"@id":"https:\/\/devexperts.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/devexperts\/","https:\/\/x.com\/devexperts","https:\/\/www.linkedin.com\/company\/devexperts","https:\/\/www.youtube.com\/channel\/UCF3FRmes2KrcVsTXQ1aAB5w\/featured"]}]}},"_links":{"self":[{"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/posts\/393","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/comments?post=393"}],"version-history":[{"count":25,"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/posts\/393\/revisions"}],"predecessor-version":[{"id":4110,"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/posts\/393\/revisions\/4110"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/media\/1668"}],"wp:attachment":[{"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/media?parent=393"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/categories?post=393"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devexperts.com\/blog\/wp-json\/wp\/v2\/tags?post=393"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}