Build: #50 failed

Job: Onepanel basic failed

user uploads files on freshly supported space on newly created storage: Test case result

The below summarizes the result of the test " user uploads files on freshly supported space on newly created storage" in build 50 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome onepanel basic tests.
Description
user uploads files on freshly supported space on newly created storage
Test class
gui.scenarios.test_onepanel_basic
Method
test_user_uploads_files_on_freshly_supported_space_on_newly_created_storage
Duration
45 secs
Status
Failed (New Failure)

Error Log

CannotSendRequest
request = <FixtureRequest for <Function 'test_user_uploads_files_on_freshly_supported_space_on_newly_created_storage'>>

    from tests.gui.steps.onezone.spaces import *
>   from tests.gui.steps.onezone.multibrowser_spaces import *

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-78>:2: in wt_click_on_subitem_for_item
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onepanel/common.py:44: in wt_click_on_subitem_for_item
    nav = getattr(onepanel(selenium[browser_id]).sidebar,
tests/gui/utils/onepanel/__init__.py:50: in sidebar
    sidebar = self._sub_sidebar
tests/gui/utils/core/web_elements.py:29: in __get__
    lambda: self._format_msg('no {item} item found '
tests/gui/utils/generic.py:124: in find_web_elem
    _scroll_to_css_sel(web_elem_root, css_sel)
tests/gui/utils/generic.py:169: in _scroll_to_css_sel
    'var el = $(\'{}\')[0]; el && el.scrollIntoView(true);'.format(css_sel))
/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py:629: in execute_script
    'args': converted_args})['value']
/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py:312: in execute
    response = self.command_executor.execute(driver_command, params)
/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/remote_connection.py:472: in execute
    return self._request(command_info[0], url, body=data)
/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/remote_connection.py:495: in _request
    self._conn.request(method, parsed_url.path, body, headers)
/usr/lib/python2.7/httplib.py:1057: in request
    self._send_request(method, url, body, headers)
/usr/lib/python2.7/httplib.py:1091: in _send_request
    self.putrequest(method, url, **skips)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <httplib.HTTPConnection instance at 0x7f8672a18878>, method = 'POST'
url = '/session/74413a2a05826e066b6100a7e91301a9/execute', skip_host = 0
skip_accept_encoding = 0

    def putrequest(self, method, url, skip_host=0, skip_accept_encoding=0):
        """Send a request to the server.
    
            `method' specifies an HTTP request method, e.g. 'GET'.
            `url' specifies the object being requested, e.g. '/index.html'.
            `skip_host' if True does not add automatically a 'Host:' header
            `skip_accept_encoding' if True does not add automatically an
               'Accept-Encoding:' header
            """
    
        # if a prior response has been completed, then forget about it.
        if self.__response and self.__response.isclosed():
            self.__response = None
    
    
        # in certain cases, we cannot issue another request on this connection.
        # this occurs when:
        #   1) we are in the process of sending a request.   (_CS_REQ_STARTED)
        #   2) a response to a previous request has signalled that it is going
        #      to close the connection upon completion.
        #   3) the headers for the previous response have not been read, thus
        #      we cannot determine whether point (2) is true.   (_CS_REQ_SENT)
        #
        # if there is no prior response, then we can request at will.
        #
        # if point (2) is true, then we will have passed the socket to the
        # response (effectively meaning, "there is no prior response"), and
        # will open a new one when a new request is made.
        #
        # Note: if a prior response exists, then we *can* start a new request.
        #       We are not allowed to begin fetching the response to this new
        #       request, however, until that prior response is complete.
        #
        if self.__state == _CS_IDLE:
            self.__state = _CS_REQ_STARTED
        else:
>           raise CannotSendRequest()
E           CannotSendRequest

/usr/lib/python2.7/httplib.py:939: CannotSendRequest