Build: #3 failed

Job: Onezone basic failed

onezone login page renders with proper title: Test case result

The below summarizes the result of the test " onezone login page renders with proper title" in build 3 of Onedata Products - gui acceptance pkg - feature-VFS-4544-gui-acceptance-tests-for-new-oz - Chrome onezone basic tests.
Description
onezone login page renders with proper title
Test class
gui.scenarios.test_onezone_basic
Method
test_onezone_login_page_renders_with_proper_title
Duration
17 secs
Status
Failed (New Failure)

Error Log

UnicodeEncodeError: 'ascii' codec can't encode character u'\u2013' in position 12: ordinal not in range(128)
request = <FixtureRequest for <Function 'test_onezone_login_page_renders_with_proper_title'>>

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

tests/gui/scenarios/test_onezone_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-24>:2: in title_contains
    ???
tests/gui/utils/generic.py:108: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="937bc43584410df1ee1ee19f4fa84b02")>}
browser_id = 'browser', text = 'Onezone - Login'

    @when(parsers.parse('user of {browser_id} should see that the page title '
                        'contains "{text}"'))
    @then(parsers.parse('user of {browser_id} should see that the page title '
                        'contains "{text}"'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def title_contains(selenium, browser_id, text):
        page_title = selenium[browser_id].title
        assert page_title == text, \
>           'page title is {} instead of expected {}'.format(page_title, text)
E       UnicodeEncodeError: 'ascii' codec can't encode character u'\u2013' in position 12: ordinal not in range(128)

tests/gui/steps/common/miscellaneous.py:66: UnicodeEncodeError