On Mar 12, Kyle Waters wrote: > I'm putting together a presentation for Openwest and was curious as to the > practices as other shops that use selenium. > > How do you use selenium(Selenium IDE,Selenium Webdriver)? > > If you use Webdriver which bindings do you use, and do you use it with a > separate testing framework(e.g. PHPUnit)?
I'm currently using Selenium's Python bindings in a Django testing environment. Mostly the Firefox webdriver, though the PhantomJS driver has also been used. I've ended up with a class that emulates Django's test client, so certain test cases can be run either with or without the browser. Granted, I failed to obtain the HTTP status code of the current page, so I faked it with a fairly nasty hack. - Eric /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
