GUI acceptance tests using environment deployed from packages.
Build: #2625 failed
Job: Atm workflows status failed
user does not see workflow on list after removing uploaded inout workflow[1oz 1op openfaas]: Test case result
The below summarizes the result of the test " user does not see workflow on list after removing uploaded inout workflow[1oz 1op openfaas]" in build 2,625 of Onedata Products - gui acceptance pkg - Atm workflows status.
- Description
- user does not see workflow on list after removing uploaded inout workflow[1oz 1op openfaas]
- Test class
- gui.scenarios.test_atm_workflows_status
- Method
- test_user_does_not_see_workflow_on_list_after_removing_uploaded_inout_workflow[1oz_1op_openfaas]
- Duration
- 3 mins
- Status
- Failed (Existing Failure)
Error Log
AssertionError: Workflow: echo is not on workflow executions list request = <FixtureRequest for <Function 'test_user_does_not_see_workflow_on_list_after_removing_uploaded_inout_workflow[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) <decorator-gen-1235>:2: in assert_workflow_on_executed_workflows_list ??? tests/utils/utils.py:95: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="334dfc3d2cb09d73ffb159c4e3c9f355")>} browser_id = 'browser' op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'> workflow = 'echo', option = 'sees' @wt(parsers.re('user of (?P<browser_id>.*) (?P<option>does not see|sees)' ' "(?P<workflow>.*)" on workflow executions list')) @repeat_failed(timeout=WAIT_FRONTEND) def assert_workflow_on_executed_workflows_list(selenium, browser_id, op_container, workflow, option): page = switch_to_automation_page(selenium, browser_id, op_container) workflow_executions_list = page.workflow_executions_list if option == 'does not see': err_msg = f'Workflow: {workflow} is on workflow executions list' assert not workflow in workflow_executions_list, err_msg else: err_msg = f'Workflow: {workflow} is not on workflow executions list' > assert workflow in workflow_executions_list, err_msg E AssertionError: Workflow: echo is not on workflow executions list tests/gui/steps/oneprovider/automation/automation_basic.py:158: AssertionError