Build: #17 failed
Job: Onezone basic failed
user sees that provider popup can be closed with clicking on map: Test case result
The below summarizes the result of the test " user sees that provider popup can be closed with clicking on map" in build 17 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome onezone basic tests.
- Description
- user sees that provider popup can be closed with clicking on map
- Test class
- gui.scenarios.test_onezone_basic
- Method
- test_user_sees_that_provider_popup_can_be_closed_with_clicking_on_map
- Duration
- 26 secs
- Status
- Failed (Existing Failure)
Error Log
RuntimeError: no "world map" on Onezone page found request = <FixtureRequest for <Function 'test_user_sees_that_provider_popup_can_be_closed_with_clicking_on_map'>> @pytest.mark.skip('it collides with deregister provider test, ' > 'so skip it on getting started for now)') @scenario('../features/onezone/providers.feature', 'User sees that when no provider is working appropriate msg is shown') def test_user_sees_that_when_no_provider_is_working_appropriate_msg_is_shown(): tests/gui/scenarios/test_onezone_basic.py:57: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /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-220>:2: in assert_no_provider_popup_next_to_provider_circle ??? tests/gui/utils/generic.py:110: in wrapper return fun(*args, **kwargs) tests/gui/steps/onezone/providers.py:181: in assert_no_provider_popup_next_to_provider_circle prov_circle = oz_page(driver)['world map'].providers[int(ordinal[:-2]) - 1] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <tests.gui.utils.onezone.OZLoggedIn object at 0x7fc6be211c50> item = 'world map' def __getitem__(self, item): item = item.lower() # 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(0.2) cls = self.panels.get(item, None) if cls: item = item.replace('_', ' ').lower() for panel in self._panels: if item == panel.text.lower(): # open page panel.click() # 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(0.2) return cls(self.web_elem, self.web_elem, parent=self) else: > raise RuntimeError('no "{}" on {} found'.format(item, str(self))) E RuntimeError: no "world map" on Onezone page found tests/gui/utils/onezone/__init__.py:58: RuntimeError