GUI acceptance tests using environment deployed from packages.

Build: #639 failed

Job: Onezone harvesters basic failed

user successfully adds space to harvester using available spaces dropdown[1oz 1op elasticsearch]: Test case result

The below summarizes the result of the test " user successfully adds space to harvester using available spaces dropdown[1oz 1op elasticsearch]" in build 639 of Onedata Products - gui acceptance pkg - Chrome onezone harvesters basic tests.
Description
user successfully adds space to harvester using available spaces dropdown[1oz 1op elasticsearch]
Test class
gui.scenarios.test_onezone_harvesters_basic
Method
test_user_successfully_adds_space_to_harvester_using_available_spaces_dropdown[1oz_1op_elasticsearch]
Duration
1 min
Status
Failed (New Failure)

Error Log

RuntimeError: no DROPDOWN item found in Choose element modal
request = <FixtureRequest for <Function 'test_user_successfully_adds_space_to_harvester_using_available_spaces_dropdown[1oz_1op_elasticsearch]'>>

    from tests.gui.steps.oneprovider.metadata import *
>   from tests.gui.steps.oneprovider.shares import *

tests/gui/scenarios/test_onezone_harvesters_basic.py:49: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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)
</usr/local/lib/python2.7/dist-packages/decorator.pyc:decorator-gen-552>:2: in choose_element_from_dropdown_in_add_element_modal
    ???
tests/utils/utils.py:79: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/discovery.py:134: in choose_element_from_dropdown_in_add_element_modal
    dropdown_modal = getattr(modals(driver), modal_name).dropdown
tests/gui/utils/core/web_elements.py:58: in __get__
    elem = super(WebItem, self).__get__(instance, owner)
tests/gui/utils/core/web_elements.py:29: in __get__
    lambda: self._format_msg('no {item} item found '
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.remote.webelement.WebElement (session="53a0d8314abd64423162e99dc3866e46", element="0.6970974872376503-42")>
css_sel = '.ember-basic-dropdown'
err_msg = 'no DROPDOWN item found in Choose element modal'

    def find_web_elem(web_elem_root, css_sel, err_msg):
        try:
            _scroll_to_css_sel(web_elem_root, css_sel)
            item = web_elem_root.find_element_by_css_selector(css_sel)
        except NoSuchElementException:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: no DROPDOWN item found in Choose element modal

tests/gui/utils/generic.py:92: RuntimeError