It will very good to be able to select tags before we hit "Run Tests"
For example:
If I want to only run scenarios which only should be done on Local, Development, Staging, or Production.
or other types of tags like @seo, @social, @security, @front_end, @back_end
Scenarios are tagged with the Behat tags of:
@local = Local
@development = Development server.
@staging = Staging and testing server.
@production = Production live server.
So that we only run bin/behat --tags with the right tag for the environment.
Example:
==========================================
$ bin/behat --tags '@development'
Which it will run Scenarios which has got the @development tag.
==========================================
$ bin/behat --tags '@staging'
Which it will run Scenarios which has got the @staging tag.
==========================================
$ bin/behat --tags '@production'
Which it will run Scenarios which has got the @production tag.
==========================================
Scenarios are tagged with the Behat tags to limit the selection of scenarios based on needed test or what change in the tested site.
[ javascript|Selenium + JavaScript ] @javascript = Run scenarios with Selenium + JavaScript needed in the page.
[ api|Drupal API ] @api = Run scenarios with Drupal API when we only have file access to the site.
[ local|Local ] @local = Recommended to run scenarios only in Local development workstations.
[ development|Development ] @development = Recommended to run scenarios only in Development servers.
[ staging|Staging and testing ] @staging = Recommended to run scenarios only in Staging and testing servers.
[ production|Production ] @production = Recommended to run scenarios only in Production live servers.
[ frontend|Front-End ] @frontend = Front-End scenarios.
[ backend|Back-End ] @backend = Back-End scenarios.
[ admin|Administration ] @admin = Testing scenarios for the administration only.
[ init|Initialization ] @init = Initialization scenarios before tests.
[ cleanup|Cleanup ] @cleanup = Cleanup scenarios after tests.
[ tools|Tools ] @tools = tools scenarios.
Closed: outdated
4.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.