InfoQ

News

Is Selenium worth the pain?

Posted by Scott Delap on Aug 03, 2007

Community
Java,
Agile
Topics
Agile Techniques ,
Web Frameworks ,
Unit Testing
Tags
Testing ,
Selenium
Is Selenium worth the pain? Atlassian developer Nick Menere has asked that very question on the Atlassian Developer Blog. Selenium is a test tool for web applications that runs directly in a browser. In his blog post Menere looks at the roadblocks found while trying to use Selenium to test two new Ajax features of JIRA 3.10. The roadblocks included:

Key Events

It turns out selenium.type(...) doesn't actually simulate a user typing into an input box. Go figure. So we typed in the text and triggered everykey stroke seperately - selenium.keyDown(...); selenium.keyPress(...); selenium.keyUp(...);. It worked!! in Firefox... In other browsers, it would now would print every character twice.

 

Timings

..Due to our non-selectable items (section labels etc.), we wanted to test that some elements attributes do not change. We fire a mouse event on the element, and then use an xpath locator to check that the element's attribute did not change ... it needed a slight pause between the event fire and test ... This was a very common fix for a lot of the things that would break - "Add/increase the pause".

Mouse Positioning Issues

To make things a little nicer for our users we decided to put in an autoscroll feature.... After putting in/increasing numerous pauses, I still couldn't get them to pass. Why would scrolling the screen cause the tests to fail? We fire events on selected elements - not co-ordinates. The build kept on breaking......I saw the mouse positioned directly in the middle of the screen, when the browser window scrolled, the mouse was positioned over one of the non-selectable items ... How to fix? We installed xwarppointer, to enable us to move the mouse pointer through bash, and tucked it away in a little corner.

Overall Menere learned a number of lessons. The most important of which was that the Selenium client is not a user.

Related Sponsor

VersionOne is recognized by Agile practitioners as the leader in Agile project management tools. Companies such as Adobe, BBC, CNN, Dow, HP, IBM, Sony and 3M have turned to VersionOne to help deliver greater value to their customers.

14 comments

Watch Thread Reply

Selenium pains by Abbas Raza Posted Aug 4, 2007 2:00 AM
Selenium is good by J House Posted Aug 4, 2007 6:02 PM
Develop Selenium! by Kunal Shah Posted Aug 5, 2007 9:07 AM
Re: Develop Selenium! by Tim Vernum Posted Aug 5, 2007 9:46 AM
Re: Develop Selenium! by Alex Popescu Posted Aug 6, 2007 6:37 AM
Yes - is it worth the pain by Reg Whitton Posted Aug 6, 2007 8:31 AM
Re: Yes - is it worth the pain by Reg Whitton Posted Aug 6, 2007 8:52 AM
URL for Blog Article by Eric Pugh Posted Aug 6, 2007 9:54 AM
Re: URL for Blog Article by Deborah Hartmann Posted Aug 6, 2007 8:35 PM
Try Sahi by Greg Willits Posted Aug 6, 2007 1:13 PM
Re: Try Sahi by Alex Popescu Posted Aug 6, 2007 2:18 PM
Selenium Woks! by Alvaro Gareppe Posted Aug 7, 2007 9:29 AM
Re: Selenium Woks! by Judit Raj Posted Nov 26, 2008 12:01 AM
Chickenfoot another contender by Alex Popescu Posted Aug 7, 2007 3:01 PM
  1. Back to top

    Selenium pains

    Aug 4, 2007 2:00 AM by Abbas Raza

    We have been going through similar pains with Selenium. Sometimes Selenium fails without any deterministic reason. We could figure some issues within our test usage. However, there are other failures which are totally random and do not give any clue. Running from command prompt with maven resulted in test failures at different places than the ones that appear when tested from within eclipse. Arggh.

  2. Back to top

    Selenium is good

    Aug 4, 2007 6:02 PM by J House

    While I agree Selenium can be a pain to work with against ajax enabled pages, I personally think it is a great product
    - it's free!!!
    - it is not even on version 1 yet (0.9.0), can only get better
    - API's exist for multiple programming languages

    by the way the 'Atlassian Developer Blog' link in the article is busted - prefixed with 'link:'

  3. Back to top

    Develop Selenium!

    Aug 5, 2007 9:07 AM by Kunal Shah

    Selenium is great! But not so great to put it into production. Developers can use it randomly to assist them. It fits with agile practices, but can not run reliably in production yet.

    I am not sure why the development is so slow (no updates since dec 2006). With Web2.0 applications, so many languages and browsers, (functional) testing on a regular basis is necessary. I would suggest to develop Selenium without going into conclusions (like pain).

  4. Back to top

    Re: Develop Selenium!

    Aug 5, 2007 9:46 AM by Tim Vernum

    But not so great to put it into production

    What do you mean by "production" ?
    Selenium is a testing tool, by its very nature it doesn't get used in production.

    Are you suggesting that developers should write Selenium tests for the purposes of development, but not run them as a regular test suite?
    If so, then that seems like a very strange position to take.

  5. Back to top

    Re: Develop Selenium!

    Aug 6, 2007 6:37 AM by Alex Popescu

    Are you suggesting that developers should write Selenium tests for the purposes of development, but not run them as a regular test suite?
    If so, then that seems like a very strange position to take.


    I think that what Kumal means is that atm you cannot rely on these tests. You can definitely write and run them periodically, but you shouldn't bet your release on just the fact that your Selenium tests passed. At least this is the way I've read his message.

    ./alex
    --
    .w( the_mindstorm )p.
    ________________________
    Alexandru Popescu
    Senior Software Eng.
    InfoQ TechLead&CoFounder

  6. Back to top

    Yes - is it worth the pain

    Aug 6, 2007 8:31 AM by Reg Whitton

    It is worth it.

    I have used HttpUnit for a few years and that had some advantages. The best was that once you have written your test, you could start it on a great many threads and knock seven bells out of your server. This is not so easy with Selenium as it requires one instance of FireFox, IE or another to simulate one user.

    However, writting the test in the first place is much easier with Selenium IDE, and keeping it upto date as the UI changes is quite easy too. With HttpUnit I quite often had to revert to debugging my unit test to see what was in the page that had been returned by the server.

    OK using Selenium with AJAX isn't a smooth ride yet. I think selenium.type() will set the value of the node in the DOM instead of simulating key presses. However, one of the really nice things about Selenium is where it doesn't quite do what you need, it is very easy to extend. Create your own user-extensions.js, put the following in it, and set up the extensions file in the options:


    Selenium.prototype.doTypeKeys = function(locator, value) {
    for(var i=0; i<value.length; i++){
    var key = value.charAt(i);
    if(browserVersion.isIE){
    // whatever you need to do for IE
    }
    else { /* Mozilla? */
    this.doKeyDown(locator, key);
    this.doKeyPress(locator, key);
    this.doKeyUp(locator, key);
    }
    }
    };
    >

    You should now have a typeKeys command that individually enters the keys into the target. This can drive each browser differently, while keeping your unit test unchanged.

  7. Back to top

    Re: Yes - is it worth the pain

    Aug 6, 2007 8:52 AM by Reg Whitton

    On thinking about it - you probably shouldn't do both a keyPress and a keyUp. You should only need keyDown and a keyUp, any onKeyPress event handler would still be fired. May be this why you get double key strokes in other browsers to FireFox.

  8. Back to top

    URL for Blog Article

    Aug 6, 2007 9:54 AM by Eric Pugh

    blogs.atlassian.com/developer/2007/08/selenium_...

    I had to poke around a bit to find it!

  9. Back to top

    Try Sahi

    Aug 6, 2007 1:13 PM by Greg Willits

    sahi.co.in/ -- from what I have seen, it's pretty good at behaving like a user

  10. Back to top

    Re: Try Sahi

    Aug 6, 2007 2:18 PM by Alex Popescu

    I must confess that at first glance Sahi looks impressive. Thanks for sharing.

    ./alex
    --
    .w( the_mindstorm )p.
    ________________________
    Alexandru Popescu
    Senior Software Eng.
    InfoQ TechLead&CoFounder

  11. Back to top

    Re: URL for Blog Article

    Aug 6, 2007 8:35 PM by Deborah Hartmann

    First link in this item now fixed, thanks for pointing it out.

  12. Back to top

    Selenium Woks!

    Aug 7, 2007 9:29 AM by Alvaro Gareppe

    I've been working with selenium since last year and it´s great for web test.
    It´s true that ajax have been a problem for selenium but the extensibility allows anything.
    The posibility of implemet new commands have allowed me, and my company, to solve the problems implementing personalized comands.

    Selenium: It works... and if it doesn´t you could make it work!

  13. Back to top

    Chickenfoot another contender

    Aug 7, 2007 3:01 PM by Alex Popescu

    Another contender may be: Chickenfoot. Funny name, isn't it? :-).

    ./alex
    --
    .w( the_mindstorm )p.
    ________________________
    Alexandru Popescu
    Senior Software Eng.
    InfoQ TechLead&CoFounder

  14. Back to top

    Re: Selenium Woks!

    Nov 26, 2008 12:01 AM by Judit Raj

    hi,
    i am judit...
    i have a doubt....
    when i am clicking a link in a page it is opening it in a new tab...
    how to verify whether the new page is opened....

Educational Content

Brian Marick on 4 Challenges and 5 Guiding Values of Agile Software Development

Brian Marick takes us through a quick tour of the most important values and challenges to adopting Agile successfully (they aren't the typical challenges and values we hear in the community).

Are You a Software Architect?

The line between development and architecture is tricky. Does it exist at all? Is an ivory tower actually needed? There's a balance in the middle, but how do you move from developer to architect?

Agile – A Way of Life and Pragmatic Use of Authority

The word 'authority' sometimes produces an allergic response in hard-line agilists. Freedom and authority – both are bad if misused and both are good if used in right spirit for a noble cause.

Getting Started with Grails, Second Edition

"Getting Started with Grails" brings you up to speed on this modern web framework. Companies as varied as LinkedIn, Wired, and Taco Bell are all using Grails. Are you ready to get started as well?

Using ITIL V3 as a Foundation for SOA Governance

Those familiar with only ITIL V2 often scoff at the thought that ITIL could serve as a governance framework for SOA. With ITIL V3, the focus of the framework shifted towards service-orientation.

Adrian Colyer on AspectJ, tc Server and dm Server

SpringSource CTO Adrian Colyer discusses AspectJ, SpringSource's dm Server and tc Server products, OSGi and Scrum.

Adam Wiggins on Heroku

Heroku's Adam Wiggins talks about Rails, Background Jobs, Add-Ons, Ruby, and how Heroku manages to work around Ruby's inefficiencies using Erlang and other languages.

SOA as an Architectural Pattern: Best Practices in Software Architecture

For Grady Booch the foundation of a good architecture is patterns, SOA being just one of many patterns. In this Second Life presentation, Booch attempts to bring more clarity on what architecture is.