Test Driven Development

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.yiiframework.com/doc/guide/1.1/en/test.overview

Testing: Overview | The Definitive Guide to Yii | Yii Framework

Testing is an indispensable process of software development.

Functional Testing

http://www.yiiframework.com/doc/guide/1.1/en/test.functional Before reading this section, it is recommended that you read the Selenium documentation and the PHPUnit documentation first.

Selenium – Is it worth the pain?

Thought I might share with you a few of my experiences with using Selenium . It is a little overdue as I have only recently been able to bring myself to talk about it. With JIRA 3.10, we introduced the AJAX-based ‘User-picker’ and ‘Issue-picker’ . http://blogs.atlassian.com/2007/08/selenium_is_the_pain_worth_it/

Testing autocomplete fields with Selenium | MrGierers World

For quite a while I struggeled with testing autocomplete fields (like the one from the script.aculo.us library) using Selenium tests. As you may already know – the “type” command does not trigger the autocomplete to look for suggestions. You rather have to use the keyUp/keyDown/keyPress command. http://mrgierer.wordpress.com/2008/08/11/testing-autocomplete-fields-with-selenium/
A command is what tells Selenium what to do.

Selenium Reference

http://release.seleniumhq.org/selenium-core/0.8.0/reference.html

One Man’s Walk in work » Blog Archive » PhpUnit for TextMate

http://onemanswalk.com/work/2008/07/18/phpunit-for-textmate/ Who would have thought I’d be doing php?

Drag & Drop with Selenium | Software Development and more …

Using Selenium for web-gui tests is really nice. http://glauche.de/2009/09/09/drag-drop-with-selenium/

Selenium Tips: CSS Selectors in Selenium Demystified | Selenium Testing? Do Cross Browser Testing with Sauce Labs

http://sauceio.com/index.php/2010/01/selenium-totw-css-selectors-in-selenium-demystified/ Following my previous TOTW about improving your locators , this blog post will show you some advanced CSS rules and pseudo-classes that will help you move your XPATH locators to CSS, a native approach on all browsers.

How to re enable logging during unit testing

Introduction ¶ Some of you have experienced the need to log some information while doing unit testing, due to the fact that the information given in the summary is just not enough, to know why the test is actually failing. this article focuses on 2 ways to get you logs up and running again .