Build: #12 failed
Job: Onezone spaces basic failed
user sees that after going to oneprovider without having any home space the first one alphabetically is loaded into view: Test case result
The below summarizes the result of the test " user sees that after going to oneprovider without having any home space the first one alphabetically is loaded into view" in build 12 of Onedata Products - gui acceptance pkg - feature-VFS-4544-gui-acceptance-tests-for-new-oz - Chrome onezone spaces basic tests.
- Description
- user sees that after going to oneprovider without having any home space the first one alphabetically is loaded into view
- Test class
- gui.scenarios.test_onezone_spaces_basic
- Method
- test_user_sees_that_after_going_to_oneprovider_without_having_any_home_space_the_first_one_alphabetically_is_loaded_into_view
- Duration
- 58 secs
- Status
- Failed (Existing Failure)
Error Log
RuntimeError: no "data space management" on Onezone page found request = <FixtureRequest for <Function 'test_user_sees_that_after_going_to_oneprovider_without_having_any_home_space_the_first_one_alphabetically_is_loaded_into_view'>> from tests.gui.steps.oneprovider.shares import * > from tests.gui.steps.oneprovider.groups import * tests/gui/scenarios/test_onezone_spaces_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/onezone/logged_in_common.py:36: in wt_expand_oz_panel _expand_oz_panel(oz_page, selenium[browser_id], panel_name) <decorator-gen-140>:2: in _expand_oz_panel ??? tests/gui/utils/generic.py:108: in wrapper return fun(*args, **kwargs) tests/gui/steps/onezone/logged_in_common.py:20: in _expand_oz_panel oz_page(driver)[panel].expand() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <tests.gui.utils.onezone.OZLoggedIn object at 0x7f91c0a0a210> item = 'data space management' def __getitem__(self, item): item = item.lower() # TODO change below sleep to wait for page to load in login step # wait for oz page to load sleep(1) # expand side panel ActionChains(self.web_elem).move_to_element(self._panels[0]).perform() # wait for side panel to expand so we can read panel name sleep(1) cls = self.panels.get(item, None) if cls: item = item.replace('_', ' ').lower() for panel in self._panels: if item == panel.text.lower(): # collapse side panel ActionChains(self.web_elem).move_to_element( self.web_elem.find_element_by_css_selector( '.row-heading .col-title')).perform() # wait for side panel to collapse sleep(1) return cls(self.web_elem, self.web_elem, parent=self) elif item == 'manage account': return ManageAccount(self.web_elem, self._manage_account, self) elif item == 'world map': return WorldMap(self.web_elem, self._atlas, self) else: > raise RuntimeError('no "{}" on {} found'.format(item, str(self))) E RuntimeError: no "data space management" on Onezone page found tests/gui/utils/onezone/__init__.py:64: RuntimeError