GUI acceptance tests using environment deployed from packages.

Build: #861 failed

Job: Shares basic was successful

user can change working directory using breadcrumbs[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user can change working directory using breadcrumbs[1oz 1op deployed]" in build 861 of Onedata Products - gui acceptance pkg - Chrome shares basic tests.
Description
user can change working directory using breadcrumbs[1oz 1op deployed]
Test class
gui.scenarios.test_shares_basic
Method
test_user_can_change_working_directory_using_breadcrumbs[1oz_1op_deployed]
Duration
1 min
Status
Failed (Existing Failure)

Error Log

AssertionError: displayed share cwd in file browser is /dir2 instead of expected share_dir2
request = <FixtureRequest for <Function 'test_user_can_change_working_directory_using_breadcrumbs[1oz_1op_deployed]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:76: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-562>:2: in is_cwd_correct
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="393c1bd163c3854e6ef57c31893278f3")>}
browser_id = 'browser', cwd = 'share_dir2'
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>

    @wt(parsers.parse('user of {browser_id} sees that current working directory '
                      'path visible in share\'s file browser is as follows: {cwd}'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def is_cwd_correct(selenium, browser_id, cwd, op_container):
        displayed_cwd = op_container(
            selenium[browser_id]).shares_page.breadcrumbs.pwd()
>       assert displayed_cwd == cwd, (f'displayed share cwd in file browser'
                                      f' is {displayed_cwd} '
                                      f'instead of expected {cwd}')
E       AssertionError: displayed share cwd in file browser is /dir2 instead of expected share_dir2

tests/gui/steps/oneprovider/shares.py:71: AssertionError