Build: #21 failed

Job: Onezone basic failed

user fails to add group as its subgroup using enter to confirm: Test case result

The below summarizes the result of the test " user fails to add group as its subgroup using enter to confirm" in build 21 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome onezone basic tests.
Description
user fails to add group as its subgroup using enter to confirm
Test class
gui.scenarios.test_onezone_basic
Method
test_user_fails_to_add_group_as_its_subgroup_using_enter_to_confirm
Duration
17 secs
Status
Failed (Existing Failure)

Error Log

StepDefinitionNotFoundError: Step definition is not found: When "user of browser copies generated token". Line 78 in scenario "User fails to add group as its subgroup using enter to confirm" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT13-COBTT/onedata/tests/gui/features/onezone/groups/groups_basic_operations.feature
request = <FixtureRequest for <Function 'test_user_fails_to_add_group_as_its_subgroup_using_enter_to_confirm'>>

    
>   @pytest.mark.skip('it collides with deregister provider test, '
                      'so skip it on getting started for now)')
    @scenario('../features/onezone/providers.feature',
              'User sees that when no provider is working appropriate msg is shown')
    def test_user_sees_that_when_no_provider_is_working_appropriate_msg_is_shown():

tests/gui/scenarios/test_onezone_basic.py:61: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:163: in _execute_scenario
    step_func = _find_step_function(request, step, scenario, encoding=encoding)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

request = <FixtureRequest for <Function 'test_user_fails_to_add_group_as_its_subgroup_using_enter_to_confirm'>>
step = <pytest_bdd.feature.Step object at 0x7f800ee3df10>
scenario = <pytest_bdd.feature.Scenario object at 0x7f800ee3de50>
encoding = 'utf-8'

    def _find_step_function(request, step, scenario, encoding):
        """Match the step defined by the regular expression pattern.
    
        :param request: PyTest request object.
        :param step: Step.
        :param scenario: Scenario.
    
        :return: Function of the step.
        :rtype: function
        """
        name = step.name
        try:
            return get_fixture_value(request, get_step_fixture_name(name, step.type, encoding))
        except pytest_fixtures.FixtureLookupError:
            try:
                name = find_argumented_step_fixture_name(name, step.type, request._fixturemanager, request)
                if name:
                    return get_fixture_value(request, name)
                raise
            except pytest_fixtures.FixtureLookupError:
                raise exceptions.StepDefinitionNotFoundError(
                    u"""Step definition is not found: {step}."""
                    """ Line {step.line_number} in scenario "{scenario.name}" in the feature "{feature.filename}""".format(
                        step=step,
                        scenario=scenario,
>                       feature=scenario.feature,
                    )
                )
E               StepDefinitionNotFoundError: Step definition is not found: When "user of browser copies generated token". Line 78 in scenario "User fails to add group as its subgroup using enter to confirm" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT13-COBTT/onedata/tests/gui/features/onezone/groups/groups_basic_operations.feature

/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:105: StepDefinitionNotFoundError