Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #7 failed

Job: Onepanel failed

user changes provider name and domain using client2 and he sees in client1 that they have changed[RESt-web GUi]: Test case result

The below summarizes the result of the test " user changes provider name and domain using client2 and he sees in client1 that they have changed[RESt-web GUi]" in build 7 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
user changes provider name and domain using client2 and he sees in client1 that they have changed[RESt-web GUi]
Test class
mixed_swaggers.scenarios.test_onepanel_basic
Method
test_user_changes_provider_name_and_domain_using_client2_and_he_sees_in_client1_that_they_have_changed[REST-web GUI]
Duration
13 secs
Status
Failed (New Failure)

Error Log

StepDefinitionNotFoundError: Step definition is not found: When "using <client2>, user1 sees provider "oneprovider-1" with hostname matches that of "oneprovider-1" provider in "onezone" Onezone service". Line 24 in scenario "User changes provider name and domain using <client2> and he sees in <client1> that they have changed" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-COT/onedata/tests/mixed_swaggers/features/onepanel/provider.feature
client1 = 'REST', client2 = 'web GUI'
request = <FixtureRequest for <Function 'test_user_changes_provider_name_and_domain_using_client2_and_he_sees_in_client1_that_they_have_changed[REST-web GUI]'>>

    from tests.gui.steps.oneprovider.common import *
>   from tests.gui.steps.oneprovider.data_tab import *

tests/mixed_swaggers/scenarios/test_onepanel_basic.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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_changes_provider_name_and_domain_using_client2_and_he_sees_in_client1_that_they_have_changed[REST-web GUI]'>>
step = <pytest_bdd.feature.Step object at 0x7fba2e5b94d0>
scenario = <pytest_bdd.feature.Scenario object at 0x7fba2e5b9450>
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 "using <client2>, user1 sees provider "oneprovider-1" with hostname matches that of "oneprovider-1" provider in "onezone" Onezone service". Line 24 in scenario "User changes provider name and domain using <client2> and he sees in <client1> that they have changed" in the feature "/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-COT/onedata/tests/mixed_swaggers/features/onepanel/provider.feature

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