Build: #45 failed

Job: Onezone spaces multiuser failed

user successfully joins space using invitation token with get started button: Test case result

The below summarizes the result of the test " user successfully joins space using invitation token with get started button" in build 45 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome onezone spaces multiuser tests.
Description
user successfully joins space using invitation token with get started button
Test class
gui.scenarios.test_onezone_spaces_multiuser
Method
test_user_successfully_joins_space_using_invitation_token_with_get_started_button
Duration
21 secs
Status
Failed (New Failure)

Error Log

StepDefinitionNotFoundError: Step definition is not found: When "user of browser1 clicks "space1" on the spaces list in the sidebar". Line 39 in scenario "User successfully joins space using invitation token (with Get started button)" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT13-COSMT/onedata/tests/gui/features/onezone/space/spaces_multibrowser.feature
request = <FixtureRequest for <Function 'test_user_successfully_joins_space_using_invitation_token_with_get_started_button'>>

    from tests.gui.steps.oneprovider.shares import *
>   from tests.gui.steps.oneprovider.groups import *

tests/gui/scenarios/test_onezone_spaces_multiuser.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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_successfully_joins_space_using_invitation_token_with_get_started_button'>>
step = <pytest_bdd.feature.Step object at 0x7fbc1f35be90>
scenario = <pytest_bdd.feature.Scenario object at 0x7fbc1f35be10>
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 browser1 clicks "space1" on the spaces list in the sidebar". Line 39 in scenario "User successfully joins space using invitation token (with Get started button)" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT13-COSMT/onedata/tests/gui/features/onezone/space/spaces_multibrowser.feature

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