Opened 17 years ago

Closed 17 years ago

Last modified 15 years ago

#2867 closed enhancement (wontfix)

Add native Selenium support to django.test framework.

Reported by: mikeal@… Owned by: nobody
Component: Testing framework Version:
Severity: normal Keywords: selenium
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Selenium is an increasingly popular functional testing framework.

Selenium comes packaged with a Python RC (Remote Control) library. The typical use is to leverage unittest to run and record Selenium results. Since we already support unittest it shouldn't be much work to get some nicely integrated Selenium support in the django.test framework.

Change History (10)

comment:1 by mikeal@…, 17 years ago

Component: Admin interfaceUnit test system

I'll be working on this over the next few weeks. Hoping to have a patch ready by end of October.

comment:2 by anonymous, 17 years ago

The implementation I'm planning on going with is to create a unittest.TestCase subclass for selenium tests that defines setUp and tearDown.

Then patching the ./manage.py test to check for those subclasses in myapp.tests. This means that each test class defined will bring up a new browser window and run all tests in that class.

The user will need a standard place to define the location of their browser application. I'll be writing in some sane defaults but they are really just guesses since we don't know which browser the user wants to use or if it's installed in the default location. Where is a good place for the user to define this variable?

comment:3 by Jacob, 17 years ago

Wow, I'm very excited to see what you come up with!

I don't think you need to have a user setting for the browser app since I'm pretty sure that the webbrowser module will figure out what the user's default browser is. If for some reason that doesn't work, however, I'd say the settings file is the right place for those options.

comment:4 by Adrian Holovaty, 17 years ago

FYI, Jason Huggins, the creator of Selenium, is a longtime Django dude and may be interested in helping you with this. I think he might already have something started.

comment:5 by anonymous, 17 years ago

This ticket now depends on ticket:2879 being accepted and committed.

I wrote the live test server support and put it in the other ticket because it's useful enough on it's own, but this obviously can't be resolved without it.

comment:6 by mir@…, 17 years ago

Keywords: selenium added
Triage Stage: UnreviewedAccepted

Based on Jacob's comment -> Accepted

comment:7 by anonymous, 17 years ago

Important update.

After months of trying to make Selenium not break on me every week myself and another developer at OSAF wrote a replacement. It's 100% js and python and will be announced publicly sometime in March, hopefully with a presentation at OSCON.

I'll be happy to create another ticket after March to add support for that system rather than Selenium but I won't be able to add Selenium support in this ticket.

Notes for whoever may write this:

The biggest problem someone else implementing this will run in to is interfacing with the Selenium RC server, and in turn interfacing with the browserbot through the server to get useful information about failures. The SeleniumRC server is in java and fairly unflexible.

It also doesn't support a real RPC protocol for the remote client library, all commands to the RC are communicated over URL parameters passed to the proxy and there isn't a very steady communication workflow between the RPC client and the server OR the RC server and the browserbot. The architecture makes it very pritle and nearly impossible to debug, especially in a continuous environment like an automated build/test system.

Also, you'll want to just maintain your own branch of the python remote client library. The method calls which translate into browser actions are all statically defined in the module, so any custom methods in the user_extensions won't work. It's about 8 lines to write a real dynamic wrapper in getattr to call remote selenium methods, but they won't accept the patch over at Selenium because "we write the file dynamically at build time via XSLT, so it is dynamic and doesn't need dynamic method generation. And we use that then we don't get pretty api documentation". Ewwwwwwwwwwwwwwwwwwwww.

comment:8 by mikeal@…, 17 years ago

Sorry for not putting my name. The last comment was me :)

comment:9 by Simon G. <dev@…>, 17 years ago

Resolution: wontfix
Status: newclosed

ok, closing this as wontfix given the comments above. If someone *does* implement some selenium support then please create a new ticket.

comment:10 by Almad, 15 years ago

For the record, I wrote liveserver in similar way to WindmillTestCase and integrated it with Selenium, works fine for me. Implemented in trunk of django-sane-testing (will be in 0.2 released this week), works fine for me - just subclass djangosanetesting.cases.SeleniumTestCase and enjoy self.selenium.

Note: See TracTickets for help on using tickets.
Back to Top