GUI Schmooey

I answered a few questions this week about automating GUI tests. One question was about recommendations for GUI automation tools for non-coders, and the other was about how much time to spend on the GUI in an MVC (model-view-controller) application.

The answers were easy. In the first case, I said that they weren’t going to get ROI from the effort, and they should just test the GUI manually. In the second case, I suggested that they do all of the automation ignoring the view/GUI, and test the GUI manually.

I could expand an entire post on why I gave those answers, but it doesn’t matter. I’m going to go out on a limb and make the following statement.

For 95% of all software applications, automating the GUI is a waste of time.

For the record, I typed 99% above first, then chickened out. I may change my mind again. The point is that I think testers, in general, spend too much time trying to automate GUIs. I’m not against automation – just write automation starting at a level below(*) the GUI and move down from there. I’m not saying that you shouldn’t test the GUI at all – I just don’t see why you wouldn’t want to test it manually, and get people knowledgeable in user experience to help. I just think that in most cases we are wasting our time when we try to automate GUIs, and wonder if anyone has the guts to stop.

 

* What I beam by a “level below the GUI” is automation that works with IAccessible or an object model rather than interacting with UI elements directly.

Similar Posts

  • Oh, the places I’ll go

    I’ve been attempting to travel less recently, and I’m happy to say that beyond early November, I have no (work related) travel plans anywhere on the horizon. For better or for worse, I’ve had a deluge of great opportunities converge over the next thirty days.(for those of you who may be experiencing déjà vu, I…

  • R-E-S-P-E-C-T

    A former colleague of mine (a former manager, to be exact), recently blogged about the plight of the SDET as second class citizens earlier this week. I was going to reply to the post right away – then I was going to reply in a blog post, but in the end I decided to wait…

  • Talkin’ bout evolution

    Purely random non-testing info here, but important if you ever need to pick me out of a crowd. I’ve been having hair issues recently, and it’s been pointed out that I’ve become difficult to recognize. This blog post is your clue to finding me should I ever fall off the grid. Once upon a time…

  • Musings on Microsoft

    If you can believe it, it’s been 4 months since I left the big M. I miss a lot of people there, but I can’t say I’ve missed working there. Sure, I’m still in the honeymoon phase here at Unity – but so far, it’s been fun, challenging, and most of all, just plain refreshing….

  • Test Design for Automation

    I’ve been pondering test automation recently. Maybe it’s because of my participation in the upcoming stp summit (note: shameless self-promotion), but that’s only the surface of it. I’ve complained about misguided test automation efforts before, but it’s more than that too. For every tester that cries out that 100% automation is the only way to…

5 Comments

  1. YES!!! I tried this (GUI automation) with enthusiasm twice and both times it was too expensive to maintain and nearly impossible to get rid of the false errors. Automation which costs more to create, run, and maintain than the same test run manually is a bad investment and it isn’t recouped if the tests have to be maintained and rewritten ever version. This doesn’t even account for the terrible job of validation that GUI test tools are doing.

    In practice I say 99% although in theory I could agree with 95% with the hope that better ways to validate are possibly on the way along with better tools? Snapshots, screen captures, and “pixel diffing” sucks so bad. We need tools that validate WAY better.

  2. I don’t lump object model and accessibility interfaces together. I see object model as below the GUI. Accessibility interfaces are testing through the GUI – there is a one to one correspondence with elements in the user interface. For disabled people, it IS the user interface.

  3. But how about test automation for stability purposes. Say I have a scenario where I test a set of functions 10000 times in order to find meomry leaks, file system issues or UI freezes?
    Wouldn’t scripted test cases suffice? I mean the ROI is there.
    Of course you could argue that simulating the same actions on low level APIs would do the work faster. But again, that would not be the same as a user would interact with the system.

    Oh, just realized this blogpost is really old…

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.