Build: #1 failed

Job: Onepanel basic failed

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 1 of Onedata Products - gui acceptance pkg - bugfix-VFS-4564-fix-failing-onenv-sources-tests - 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
Duration
48 secs
Status
Failed (New Failure)

Error Log

AssertionError: currently on /onedata/clusters/the-cluster/provider page instead of expected /login
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-14>:2: in assert_being_redirected_to_page
    ???
tests/gui/utils/generic.py:108: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

page = '/login'
selenium = {'admin': <selenium.webdriver.chrome.webdriver.WebDriver (session="377e95d4a1a967c5379d87533b3ffa9f")>, 'browser1': <s...0d2d6bed3dc6")>, 'user1': <selenium.webdriver.chrome.webdriver.WebDriver (session="0f7e939ec1f090c7e5670d2d6bed3dc6")>}
browser_id = 'browser1'

    @when(parsers.re('user of (?P<browser_id>.+) should be '
                     'redirected to (?P<page>.+) page'))
    @then(parsers.re('user of (?P<browser_id>.+) should be '
                     'redirected to (?P<page>.+) page'))
    @repeat_failed(timeout=WAIT_BACKEND)
    def assert_being_redirected_to_page(page, selenium, browser_id):
        driver = selenium[browser_id]
        curr_page = re.match(r'https?://.*?(/#)?(/.*)',
                             driver.current_url).group(2)
        assert curr_page == page, ('currently on {} page instead of expected '
>                                  '{}'.format(curr_page, page))
E       AssertionError: currently on /onedata/clusters/the-cluster/provider page instead of expected /login

tests/gui/steps/common/url.py:45: AssertionError