GUI acceptance tests using environment deployed from packages.

Build: #2274 was successful

Job: Chrome onezone automations tests was successful

Stages & jobs

  1. Acceptance Test

user sees new lane after creating it[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees new lane after creating it[1oz 1op deployed]" in build 2,274 of Onedata Products - gui acceptance pkg - Chrome onezone automations tests.
Description
user sees new lane after creating it[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_automation
Method
test_user_sees_new_lane_after_creating_it[1oz_1op_deployed]
Jira Issue
Duration
1 min
Status
Failed (Existing Failure)

Error Log

RuntimeError: cannot click on button btn in Create new store modal
request = <FixtureRequest for <Function 'test_user_sees_new_lane_after_creating_it[1oz_1op_deployed]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-489>:2: in click_modal_button
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/modals/modal.py:345: in click_modal_button
    getattr(getattr(modals(selenium[browser_id]), modal), button)()
tests/gui/utils/core/web_objects.py:21: in __call__
    self.click()
tests/gui/utils/core/base.py:82: in click
    lambda: 'cannot click on {}'.format(self))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

driver = <selenium.webdriver.chrome.webdriver.WebDriver (session="093b06cc6830dd7efb73755c09d1e89b")>
web_elem = <selenium.webdriver.remote.webelement.WebElement (session="093b06cc6830dd7efb73755c09d1e89b", element="460335f6-bad3-4168-b490-6d414bfb15b9")>
err_msg = 'cannot click on button btn in Create new store modal', delay = True

    def click_on_web_elem(driver, web_elem, err_msg, delay=True):
        disabled = 'disabled' in web_elem.get_attribute('class')
        # scroll to make the element visible
        if not web_elem.is_displayed():
            web_elem.location_once_scrolled_into_view
        if web_elem.is_enabled() and web_elem.is_displayed() and not disabled:
            # TODO VFS-7484 make optional sleep and localize only those tests that need it or find better alternative
            # currently checking if elem is enabled not always work (probably after striping disabled from web elem
            # elem is not immediately clickable)
            if delay:
                sleep(delay if isinstance(delay, float) else 0.25)
            action = ActionChains(driver)
            action.move_to_element(web_elem).click_and_hold(web_elem).release(web_elem)
            action.perform()
        else:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: cannot click on button btn in Create new store modal

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