Tutorials

You'll find here tutorials and code snippets about Drupal, Magento, Zend Framework, Ruby on Rails ...

PHP bind using for webDriver

Nurdzhan's picture
Nurdzhan

Integrational (functional) testing (in contrast to the unit testing) - is not the individual atomic system component (class) testing , but testing the result of their interaction with each other in some environment. Long ago it is known testing tool for web applications and pages in browser - Selenium.

› Read more

Selenium 2.0 webDriver

Alexandr's picture
Alexandr

Selenium 2.0 - is a tool for automated functional testing, which includes two previously independent projects - Selenium Remote Control (Selenium RC) and webDriver (Selenium WD). Selenium 2.0 allows you to use all the tools like Selenium WebDriver, and Selenium RC. Selenium developers recommend to use Selenium webDriver, as Selenium RC was officially deprecated. While working at Selenium 2.0 they mainly developed Selenium WebDriver and its compatibility with Selenium RC. Selenium RC itself was not changed much.

› Read more

Unit testing. Benefits of testig and practical use of PhpUnit.

Vladimir's picture
Vladimir

Even good programmers make mistakes. The difference between a good programmer and a bad programmer is that the good programmer uses tests to detect his mistakes as soon as possible. © Sebastian Bergmann Creator of PHPUnit.

Junior programmers often do not see the point in testing their own code with unit tests. Let's try to understand how to write tests so that they bring only benefits.

› Read more