GUI acceptance tests using environment deployed from packages.

Build: #1546 failed

Job: Shares basic failed

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 1,546 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 /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:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-707>:2: in is_cwd_correct
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="0988dd72c29ab583ace331a92b088edd")>}
browser_id = 'browser', cwd = '/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 /dir2

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