GUI acceptance tests using environment deployed from packages.

Build: #549 failed

Job: Onezone basic failed

user can go to oneprovider by clicking on visit provider in providers popup[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user can go to oneprovider by clicking on visit provider in providers popup[1oz 1op deployed]" in build 549 of Onedata Products - gui acceptance pkg - Chrome onezone basic tests.
Description
user can go to oneprovider by clicking on visit provider in providers popup[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_basic
Method
test_user_can_go_to_oneprovider_by_clicking_on_visit_provider_in_providers_popup[1oz_1op_deployed]
Duration
2 mins
Status
Failed (New Failure)

Error Log

RuntimeError: expected opw as access part in url instead got: ozw
request = <FixtureRequest for <Function 'test_user_can_go_to_oneprovider_by_clicking_on_visit_provider_in_providers_popup[1oz_1op_deployed]'>>

    from tests.gui.steps.oneprovider.common import *
>   from tests.gui.steps.oneprovider.data_tab import *

tests/gui/scenarios/test_onezone_basic.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/steps/oneprovider/common.py:50: in wt_wait_for_op_session_to_start
    _wait_for_op_session_to_start(selenium, browser_id_list)
tests/gui/steps/oneprovider/common.py:36: in _wait_for_op_session_to_start
    _assert_correct_url(driver)
<decorator-gen-732>:2: in _assert_correct_url
    ???
tests/utils/utils.py:71: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

d = <selenium.webdriver.chrome.webdriver.WebDriver (session="33c9c4bb20c65006de9022ee31aa9923")>

    @repeat_failed(timeout=WAIT_BACKEND*4)
    def _assert_correct_url(d):
        try:
            found = parse_url(d.current_url).group('where')
        except AttributeError:
            raise RuntimeError('no access part found in url')
        else:
            if 'opw' != found.lower():
                raise RuntimeError('expected opw as access part in url '
>                                  'instead got: {}'.format(found))
E               RuntimeError: expected opw as access part in url instead got: ozw

tests/gui/steps/oneprovider/common.py:30: RuntimeError