GUI acceptance tests using environment deployed from packages.

Build: #201 failed

Job: Chrome transfers multi browser tests failed

user replicates directory with 2 files on different providers to current provider: Test case result

The below summarizes the result of the test " user replicates directory with 2 files on different providers to current provider" in build 201 of Onedata Products - gui acceptance pkg - Chrome transfers multi browser tests.
Description
user replicates directory with 2 files on different providers to current provider
Test class
gui.scenarios.test_oneprovider_transfers_multi
Method
test_user_replicates_directory_with_2_files_on_different_providers_to_current_provider
Duration
2 mins
Status
Failed (New Failure)

Error Log

RuntimeError: no "dev-oneprovider-paris" found in Data distribution modal for "dir1"
request = <FixtureRequest for <Function 'test_user_replicates_directory_with_2_files_on_different_providers_to_current_provider'>>

    from tests.gui.steps.oneprovider.transfers import *
>   from tests.gui.meta_steps.oneprovider.common import *

tests/gui/scenarios/test_oneprovider_transfers_multi.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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/meta_steps/oneprovider/common.py:73: in meta_replicate_item
    replicate_item(selenium, browser_id, provider, hosts)
tests/gui/steps/oneprovider/transfers.py:102: in replicate_item
    .providers[provider_name]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.core.web_objects.PageObjectsSequence object at 0x7f8a255188d0>
sel = 'dev-oneprovider-paris'

    def __getitem__(self, sel):
        if isinstance(sel, int):
            item = self._getitem_by_idx(sel)
            if item:
                return self.cls(self.driver, item, self.parent)
            else:
                raise RuntimeError('Index out of bound. Requested item at '
                                   '{idx} while limit is {limit} in '
                                   '{parent}'.format(idx=sel, limit=len(self),
                                                     parent=self.parent))
        elif isinstance(sel, (str, unicode)):
            item = self._getitem_by_id(sel)
            if item:
                return item
            else:
                raise RuntimeError('no "{id}" found in '
                                   '{parent}'.format(id=sel,
>                                                    parent=self.parent))
E               RuntimeError: no "dev-oneprovider-paris" found in Data distribution modal for "dir1"

tests/gui/utils/core/web_objects.py:85: RuntimeError