GUI acceptance tests using environment deployed from packages.

Build: #1883 failed

Job: Chrome oneprovider hardlinks and symlinks failed

user creates hardlinks in other directories than original files[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user creates hardlinks in other directories than original files[1oz 1op deployed]" in build 1,883 of Onedata Products - gui acceptance pkg - Chrome oneprovider hardlinks and symlinks.
Description
user creates hardlinks in other directories than original files[1oz 1op deployed]
Test class
gui.scenarios.test_oneprovider_hardlinks_and_symlinks
Method
test_user_creates_hardlinks_in_other_directories_than_original_files[1oz_1op_deployed]
Jira Issue
Duration
2 mins
Status
Failed (New Failure)

Error Log

AssertionError: space1/dir1/file2 not in ['/space1/dir1/file2', '/space1/file2', '/space1/dir1/dir2/file2']
request = <FixtureRequest for <Function 'test_user_creates_hardlinks_in_other_directories_than_original_files[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:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="4f2f6bb6f7969c9c3263d926ec76c9e3")>}
browser_id = 'browser'
paths = '["space1/dir1/file2", "space1/file2", "space1/dir1/dir2/file2"]'
modals = <class 'tests.gui.utils.common.modals.Modals'>

    @wt(parsers.parse('user of {browser_id} sees paths {paths} '
                      'of hardlinks in "File details" modal'))
    def assert_hardlinks_paths_in_file_dets_modal(selenium, browser_id, paths,
                                                  modals):
        entries = modals(selenium[browser_id]).file_details.hardlinks_tab.files
        entries_paths = [entry.get_path_string() for entry in entries]
        parsed_paths = parse_seq(paths)
        for path in parsed_paths:
>           assert path in entries_paths, f'{path} not in {entries_paths}'
E           AssertionError: space1/dir1/file2 not in ['/space1/dir1/file2', '/space1/file2', '/space1/dir1/dir2/file2']

tests/gui/steps/oneprovider/file_browser.py:346: AssertionError