Nll
Nll

Reputation: 872

Best Bundle for Selenium 2 (WebDriver) and Phpunit with Symfony 2.1

I have a question about Selenium V2 (Webdriver) and phpUnit,so what the best between this bundles to use it :

I want to know your opinion about the good and rish one to use it in my project developed with symfony 2.1?

Upvotes: 2

Views: 2937

Answers (1)

Carlos Granados
Carlos Granados

Reputation: 11351

If you want to use Selenium for functional testing, your best bet is to use Behat and Mink, they are outstanding tools and integrate really well with Symfony thanks to their Symfony2 Extension. They are not really phpUnit libraries, as they rather use a different methodology called BDD (Behaviour Driven Development). But they are really easy to use and once you get the hang of it, you will develop your functional tests with a wonderful ease and you will wonder why you did not learn of this before.

BTW, none of the three tools you mention are "bundles" in the Symfony sense of a bundle, they are just PHP libraries

Upvotes: 5

Related Questions