GUI acceptance tests using environment deployed from packages.

Build: #1577 failed

Job: Public shares failed

user sees that share name in public interface has changed after owner renamed it[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees that share name in public interface has changed after owner renamed it[1oz 1op deployed]" in build 1,577 of Onedata Products - gui acceptance pkg - Chrome public shares tests.
Description
user sees that share name in public interface has changed after owner renamed it[1oz 1op deployed]
Test class
gui.scenarios.test_public_shares
Method
test_user_sees_that_share_name_in_public_interface_has_changed_after_owner_renamed_it[1oz_1op_deployed]
Jira Issue
Duration
1 min
Status
Failed (Existing Failure)

Error Log

AssertionError: displayed public share name is "" instead of expected "share_dir1"
request = <FixtureRequest for <Function 'test_user_sees_that_share_name_in_public_interface_has_changed_after_owner_renamed_it[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)
<decorator-gen-759>:2: in assert_public_share_named
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="1abdf1ee3c1ca7260a6131c7683c2fd9")>, 'space_owner_browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="3553e12e7f4fddaf7130628b42ce626a")>}
browser_id = 'browser1', share_name = 'share_dir1'
public_share = <class 'tests.gui.utils.oneprovider.shares.public_share.PublicShareView'>

    @wt(parsers.parse('user of {browser_id} sees that '
                      'public share is named "{share_name}"'))
    @repeat_failed(timeout=WAIT_BACKEND, interval=0.5)
    def assert_public_share_named(selenium, browser_id, share_name, public_share):
        _change_iframe_for_public_share_page(selenium, browser_id)
        displayed_name = public_share(selenium[browser_id]).name
>       assert displayed_name == share_name, (f'displayed public share name '
                                              f'is "{displayed_name}" instead of '
                                              f'expected "{share_name}"')
E       AssertionError: displayed public share name is "" instead of expected "share_dir1"

tests/gui/steps/oneprovider/public_shares.py:49: AssertionError