Build: #9 failed

Job: Chrome oneprovider groups multiuser tests failed

user successfully invites other user to join his group presses enter after entering token: Test case result

The below summarizes the result of the test " user successfully invites other user to join his group presses enter after entering token" in build 9 of Onedata Products - gui acceptance pkg - feature-VFS-4544-gui-acceptance-tests-for-new-oz - Chrome oneprovider groups multiuser tests.
Description
user successfully invites other user to join his group presses enter after entering token
Test class
gui.scenarios.test_oneprovider_groups_multiuser
Method
test_user_successfully_invites_other_user_to_join_his_group_presses_enter_after_entering_token
Duration
22 secs
Status
Failed (Existing Failure)

Error Log

StepDefinitionNotFoundError: Step definition is not found: Given "users of [browser1, browser2] visited oneprovider-1 from onezone gui page". Line 24 in scenario "User successfully invites other user to join his group (presses ENTER after entering token)" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT6-COGMT/onedata/tests/gui/features/oneprovider/groups/multi_browser.feature
request = <FixtureRequest for <Function 'test_user_successfully_invites_other_user_to_join_his_group_presses_enter_after_entering_token'>>

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

tests/gui/scenarios/test_oneprovider_groups_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_invites_other_user_to_join_his_group_presses_enter_after_entering_token'>>
step = <pytest_bdd.feature.Step object at 0x7fa373a4f250>
scenario = <pytest_bdd.feature.Scenario object at 0x7fa373a4f510>
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: Given "users of [browser1, browser2] visited oneprovider-1 from onezone gui page". Line 24 in scenario "User successfully invites other user to join his group (presses ENTER after entering token)" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT6-COGMT/onedata/tests/gui/features/oneprovider/groups/multi_browser.feature

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