GUI acceptance tests using environment deployed from packages.

Build: #863 failed

Job: Shares basic failed

user can jump to data tab using breadcrumbs in single share view in full onezone interface[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user can jump to data tab using breadcrumbs in single share view in full onezone interface[1oz 1op deployed]" in build 863 of Onedata Products - gui acceptance pkg - Chrome shares basic tests.
Description
user can jump to data tab using breadcrumbs in single share view in full onezone interface[1oz 1op deployed]
Test class
gui.scenarios.test_shares_basic
Method
test_user_can_jump_to_data_tab_using_breadcrumbs_in_single_share_view_in_full_onezone_interface[1oz_1op_deployed]
Duration
1 min
Status
Failed (New Failure)

Error Log

AssertionError: displayed share cwd in file browser is share_dir2_dir3 instead of expected /dir3
request = <FixtureRequest for <Function 'test_user_can_jump_to_data_tab_using_breadcrumbs_in_single_share_view_in_full_onezone_interface[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="0c3f1533b51eb808b03d834907126218")>}
browser_id = 'browser', cwd = '/dir3'
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 share_dir2_dir3 instead of expected /dir3

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