GUI acceptance tests using environment deployed from packages.

Build: #2475 failed

Job: Atm workflow execution failed

Stages & jobs

  1. Acceptance Test

user sees that workflow task lane statuses are finished after execution of created workflow1 workflow finishes[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user sees that workflow task lane statuses are finished after execution of created workflow1 workflow finishes[1oz 1op openfaas]" in build 2,475 of Onedata Products - gui acceptance pkg - Chrome oneprovider atm workflow execution tests.
Description
user sees that workflow task lane statuses are finished after execution of created workflow1 workflow finishes[1oz 1op openfaas]
Test class
gui.scenarios.test_oneprovider_atm_workflows_execution
Method
test_user_sees_that_workflow_task_lane_statuses_are_finished_after_execution_of_created_workflow1_workflow_finishes[1oz_1op_openfaas]
Duration
2 mins
Status
Failed (New Failure)

Error Log

Exception: After awaiting for workflow "Workflow1" for 10 seconds its status is not Finished as expected
request = <FixtureRequest for <Function 'test_user_sees_that_workflow_task_lane_statuses_are_finished_after_execution_of_created_workflow1_workflow_finishes[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)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="24e1bf1072f6d678b31d1dae8b6d0d0b")>}
browser_id = 'browser'
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>
expected_status = 'Finished', name = 'Workflow1', seconds = '10'
option = 'workflow'

    @wt(parsers.re('user of (?P<browser_id>.*) awaits for status of "(?P<name>.*)"'
                   ' (?P<option>lane|workflow) to be "(?P<expected_status>.*)"'
                   ' maximum of (?P<seconds>.*) seconds'))
    def await_for_lane_workflow_status(selenium, browser_id, op_container,
                                       expected_status, name, seconds, option):
        page = switch_to_automation_page(selenium, browser_id, op_container)
        t_end = time.time() + int(seconds)
        while time.time() < t_end:
            actual_status = get_status(page, option, name)
            if actual_status.lower() == expected_status.lower():
                break
        else:
>           raise Exception(f'After awaiting for {option} "{name}" for'
                            f' {seconds} seconds its status is not '
                            f'{expected_status} as expected')
E           Exception: After awaiting for workflow "Workflow1" for 10 seconds its status is not Finished as expected

tests/gui/steps/oneprovider/automation.py:166: Exception