GUI acceptance tests using environment deployed from packages.

Build: #2436 failed

Job: Atm workflow execution failed

Stages & jobs

  1. Acceptance Test

user creates checksumcountingoneclient workflow through gui and executes it[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user creates checksumcountingoneclient workflow through gui and executes it[1oz 1op openfaas]" in build 2,436 of Onedata Products - gui acceptance pkg - Chrome oneprovider atm workflow execution tests.
Description
user creates checksumcountingoneclient workflow through gui and executes it[1oz 1op openfaas]
Test class
gui.scenarios.test_oneprovider_atm_workflows_execution
Method
test_user_creates_checksumcountingoneclient_workflow_through_gui_and_executes_it[1oz_1op_openfaas]
Jira Issue
Duration
5 mins
Status
Failed (New Failure)

Error Log

RuntimeError: no "result:" found in TaskAddForm in WorkflowsPage in AutomationPage in Onezone page
request = <FixtureRequest for <Function 'test_user_creates_checksumcountingoneclient_workflow_through_gui_and_executes_it[1oz_1op_openfaas]'>>

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

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/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)
tests/gui/meta_steps/onezone/automation.py:243: in create_task_using_previously_created_lambda
    _create_task_using_previously_created_lambda(browser_id, config, selenium,
tests/gui/meta_steps/onezone/automation.py:288: in _create_task_using_previously_created_lambda
    choose_option_in_dropdown_menu_in_task_page(
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-1197>:2: in choose_option_in_dropdown_menu_in_task_page
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/automation.py:192: in choose_option_in_dropdown_menu_in_task_page
    page.results[object_name + ':'].target_store_dropdown.click()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.core.web_objects.PageObjectsSequence object at 0x7fdd78130cd0>
sel = 'result:'

    def __getitem__(self, sel):
        if isinstance(sel, int):
            item = self._getitem_by_idx(sel)
            if item:
                return self.cls(self.driver, item, self.parent)
            else:
                raise RuntimeError('Index out of bound. Requested item at '
                                   '{idx} while limit is {limit} in '
                                   '{parent}'.format(idx=sel, limit=len(self),
                                                     parent=self.parent))
        elif isinstance(sel, str):
            item = self._getitem_by_id(sel)
            if item:
                return item
            else:
>               raise RuntimeError('no "{id}" found in '
                                   '{parent}'.format(id=sel,
                                                     parent=self.parent))
E               RuntimeError: no "result:" found in TaskAddForm in WorkflowsPage in AutomationPage in Onezone page

tests/gui/utils/core/web_objects.py:83: RuntimeError