0

Any best practices of creating acceptance and functional tests for multilingual sites? I would like to test content and functionality on multiple languages but not duplicate the tests.

If we take Behat, how to arrange a test environment from the very beginning?

Alex.Sh
  • 123
  • 1
  • 2
  • 7

1 Answers1

0

You could use Scenario Outlines: http://behat.readthedocs.org/en/v2.5/guides/1.gherkin.html#scenario-outlines

language | label1 | label2 |
es       | Hola   | Adios  | 
en       | Hello  | Bye    |
gvf
  • 1,039
  • 7
  • 6