GUI acceptance tests using environment deployed from packages.

Build: #660 failed

Job: Chrome transfers tests failed

user replicates file to remote provider[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user replicates file to remote provider[1oz 2op deployed]" in build 660 of Onedata Products - gui acceptance pkg - Chrome transfers tests.
Description
user replicates file to remote provider[1oz 2op deployed]
Test class
gui.scenarios.test_oneprovider_transfers
Method
test_user_replicates_file_to_remote_provider[1oz_2op_deployed]
Duration
3 mins
Status
Failed (New Failure)

Error Log

RuntimeError: no TOOLBAR item found in DataTab in Oneprovider page
request = <FixtureRequest for <Function 'test_user_replicates_file_to_remote_provider[1oz_2op_deployed]'>>

    from tests.gui.steps.oneprovider.metadata import *
>   from tests.gui.steps.oneprovider.shares import *

tests/gui/scenarios/test_oneprovider_transfers.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)
tests/gui/steps/oneprovider/data_tab.py:313: in upload_file_to_cwd_in_data_tab
    op_page(driver).data.toolbar.upload_files(upload_file_path(file_name))
tests/gui/utils/core/web_elements.py:58: in __get__
    elem = super(WebItem, 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="7bfc326554a6f3b08483128193c8b825")>
css_sel = 'header nav.navbar ul.data-files-list-toolbar'
err_msg = 'no TOOLBAR item found in DataTab 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 TOOLBAR item found in DataTab in Oneprovider page

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