What is the best way to organize Selenium tests using PHPUnit?

I start by writing trial tests for my project, and I would like to know how to best organize my selenium tests.

Should I make a separate package for each section of the site? Or do I need to group them using acceptance tests (integration), ui checks and browser compatibility kits?

Any advice would be helpful. Thank!

+5
source share
2 answers

Yes, I prefer a separate set for each section of the site.

Since you are using PHPUnit, if you want to run tests in parallel, you need to make one class for one thread.

, . .

wise library Suite, Parallel.

+1

- . . , , , .

+1

All Articles