Build: #4 failed

Job: Multiprovider basic failed

user leaves group in one provider and sees that it was leaved from also in other provider: Test case result

The below summarizes the result of the test " user leaves group in one provider and sees that it was leaved from also in other provider" in build 4 of Onedata Products - gui acceptance pkg - feature-VFS-4307-tests - Chrome multiprovider basic tests.
Description
user leaves group in one provider and sees that it was leaved from also in other provider
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_leaves_group_in_one_provider_and_sees_that_it_was_leaved_from_also_in_other_provider
Duration
41 secs
Status
Failed (New Failure)

Error Log

StepDefinitionNotFoundError: Step definition is not found: When "user of browser clicks on the "Go to your files" button in provider popup". Line 175 in scenario "User leaves group in one provider and sees that it was leaved from also in other provider" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT0-CMBT/onedata/tests/gui/features/oneprovider/multiprovider/basic.feature
request = <FixtureRequest for <Function 'test_user_leaves_group_in_one_provider_and_sees_that_it_was_leaved_from_also_in_other_provider'>>

>   ???

tests/gui/scenarios/test_multiprovider_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_leaves_group_in_one_provider_and_sees_that_it_was_leaved_from_also_in_other_provider'>>
step = <pytest_bdd.feature.Step object at 0x7f210b4ac4d0>
scenario = <pytest_bdd.feature.Scenario object at 0x7f210b3dd6d0>
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 clicks on the "Go to your files" button in provider popup". Line 175 in scenario "User leaves group in one provider and sees that it was leaved from also in other provider" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT0-CMBT/onedata/tests/gui/features/oneprovider/multiprovider/basic.feature

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