GUI acceptance tests using environment deployed from packages.

Build: #359 was successful

Job: Onepanel basic was successful

user changes provider name and domain: Test case result

The below summarizes the result of the test " user changes provider name and domain" in build 359 of Onedata Products - gui acceptance pkg - Chrome onepanel basic tests.
Description
user changes provider name and domain
Test class
gui.scenarios.test_onepanel_basic
Method
test_user_changes_provider_name_and_domain
Jira Issue
Duration
1 min
Status
Failed (Existing Failure)

Error Log

RuntimeError: no  item found in Oneprovider page
request = <FixtureRequest for <Function 'test_user_changes_provider_name_and_domain'>>

>   ???

tests/gui/scenarios/test_onepanel_basic.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function
    step_func(**kwargs)
<decorator-gen-288>:2: in wt_assert_provider_name_in_op
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/common.py:75: in wt_assert_provider_name_in_op
    displayed_name = op_page(selenium[browser_id]).provider_name
tests/gui/utils/core/web_elements.py:76: in __get__
    item = super(Label, self).__get__(instance, owner)
tests/gui/utils/core/web_elements.py:29: in __get__
    lambda: self._format_msg('no {item} item found '
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.chrome.webdriver.WebDriver (session="fc40a6669e411eb62003af0d25b2cb5e")>
css_sel = 'header .navbar-header .provider-name'
err_msg = 'no  item found in Oneprovider page'

    def find_web_elem(web_elem_root, css_sel, err_msg):
        try:
            _scroll_to_css_sel(web_elem_root, css_sel)
            item = web_elem_root.find_element_by_css_selector(css_sel)
        except NoSuchElementException:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: no  item found in Oneprovider page

tests/gui/utils/generic.py:129: RuntimeError