GUI acceptance tests using environment deployed from packages.
Build: #2937 failed
Job: Atm workflow execution failed
user checks pods activity events after checksumcountingdifferentlambdas workflow execution[1oz 1op openfaas]: Test case result
The below summarizes the result of the test " user checks pods activity events after checksumcountingdifferentlambdas workflow execution[1oz 1op openfaas]" in build 2,937 of Onedata Products - gui acceptance pkg - Atm workflow execution.
- Description
- user checks pods activity events after checksumcountingdifferentlambdas workflow execution[1oz 1op openfaas]
- Test class
- gui.scenarios.test_atm_workflows_execution
- Method
- test_user_checks_pods_activity_events_after_checksumcountingdifferentlambdas_workflow_execution[1oz_1op_openfaas]
- Jira Issue
-
- Duration
- 8 mins
- Status
- Failed (New Failure)
Error Log
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <a class="clickable view-task-pods-activity-action-trigger" data-ember-action="" data-ember-action-467="467">...</a> is not clickable at point (180, 446). Other element would receive the click: <div class="events-table-section fill-flex-using-column relative">...</div> (Session info: chrome=130.0.6723.69) Stacktrace: #0 0x563f02ef010a <unknown> #1 0x563f02a0b460 <unknown> #2 0x563f02a5eb26 <unknown> #3 0x563f02a5caad <unknown> #4 0x563f02a5a557 <unknown> #5 0x563f02a59971 <unknown> #6 0x563f02a4cf78 <unknown> #7 0x563f02a7c012 <unknown> #8 0x563f02a4c958 <unknown> #9 0x563f02a7c1de <unknown> #10 0x563f02a9aaf6 <unknown> #11 0x563f02a7bdb3 <unknown> #12 0x563f02a4ac10 <unknown> #13 0x563f02a4bbee <unknown> #14 0x563f02ebc39b <unknown> #15 0x563f02ec0338 <unknown> #16 0x563f02ea9ebc <unknown> #17 0x563f02ec0eb7 <unknown> #18 0x563f02e8f10f <unknown> #19 0x563f02ede828 <unknown> #20 0x563f02ede9f0 <unknown> #21 0x563f02eeef86 <unknown> #22 0x7f13918c7a94 <unknown> #23 0x7f1391954a34 __clone fixturefunc = <function assert_pod_name_for_task at 0x7f12a9f947c0> request = <FixtureRequest for <Function test_user_checks_pods_activity_events_after_checksumcountingdifferentlambdas_workflow_execution[1oz_1op_openfaas]>> kwargs = {'browser_id': 'browser', 'lambda_name': 'calculate-checksum-rest', 'lane': 'calculate-checksums', 'modals': <class 'tests.gui.utils.common.modals.Modals'>, ...} def call_fixture_func( fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs ) -> FixtureValue: if is_generator(fixturefunc): fixturefunc = cast( Callable[..., Generator[FixtureValue, None, None]], fixturefunc ) generator = fixturefunc(**kwargs) try: fixture_result = next(generator) except StopIteration: raise ValueError(f"{request.fixturename} did not yield a value") from None finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator) request.addfinalizer(finalizer) else: fixturefunc = cast(Callable[..., FixtureValue], fixturefunc) > fixture_result = fixturefunc(**kwargs) /usr/local/lib/python3.12/dist-packages/_pytest/fixtures.py:913: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/utils/bdd_utils.py:78: in wrapper return fun(*ba.args, **ba.kwargs) /usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun return caller(func, *(extras + args), **kw) tests/utils/utils.py:93: in wrapper return fun(*args, **kwargs) tests/gui/meta_steps/oneprovider/automation/pods_activity.py:251: in assert_pod_name_for_task click_on_link_in_task_box( tests/utils/bdd_utils.py:78: in wrapper return fun(*ba.args, **ba.kwargs) /usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun return caller(func, *(extras + args), **kw) tests/utils/utils.py:93: in wrapper return fun(*args, **kwargs) tests/gui/steps/oneprovider/automation/automation_basic.py:190: in click_on_link_in_task_box task.click_on_option_in_task(option) tests/gui/utils/oneprovider/automation.py:81: in click_on_option_in_task ).click() /usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/webelement.py:94: in click self._execute(Command.CLICK_ELEMENT) /usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/webelement.py:395: in _execute return self._parent.execute(command, params) /usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/webdriver.py:354: in execute self.error_handler.check_response(response) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x7f12a9160f20> response = {'status': 400, 'value': '{"value":{"error":"element click intercepted","message":"element click intercepted: Element ...unknown>\\n#21 0x563f02eeef86 \\u003Cunknown>\\n#22 0x7f13918c7a94 \\u003Cunknown>\\n#23 0x7f1391954a34 __clone\\n"}}'} def check_response(self, response: Dict[str, Any]) -> None: """Checks that a JSON response from the WebDriver does not have an error. :Args: - response - The JSON response from the WebDriver server as a dictionary object. :Raises: If the response contains an error message. """ status = response.get("status", None) if not status or status == ErrorCode.SUCCESS: return value = None message = response.get("message", "") screen: str = response.get("screen", "") stacktrace = None if isinstance(status, int): value_json = response.get("value", None) if value_json and isinstance(value_json, str): import json try: value = json.loads(value_json) if len(value) == 1: value = value["value"] status = value.get("error", None) if not status: status = value.get("status", ErrorCode.UNKNOWN_ERROR) message = value.get("value") or value.get("message") if not isinstance(message, str): value = message message = message.get("message") else: message = value.get("message", None) except ValueError: pass exception_class: Type[WebDriverException] e = ErrorCode() error_codes = [item for item in dir(e) if not item.startswith("__")] for error_code in error_codes: error_info = getattr(ErrorCode, error_code) if isinstance(error_info, list) and status in error_info: exception_class = getattr(ExceptionMapping, error_code, WebDriverException) break else: exception_class = WebDriverException if not value: value = response["value"] if isinstance(value, str): raise exception_class(value) if message == "" and "message" in value: message = value["message"] screen = None # type: ignore[assignment] if "screen" in value: screen = value["screen"] stacktrace = None st_value = value.get("stackTrace") or value.get("stacktrace") if st_value: if isinstance(st_value, str): stacktrace = st_value.split("\n") else: stacktrace = [] try: for frame in st_value: line = frame.get("lineNumber", "") file = frame.get("fileName", "<anonymous>") if line: file = f"{file}:{line}" meth = frame.get("methodName", "<anonymous>") if "className" in frame: meth = f"{frame['className']}.{meth}" msg = " at %s (%s)" msg = msg % (meth, file) stacktrace.append(msg) except TypeError: pass if exception_class == UnexpectedAlertPresentException: alert_text = None if "data" in value: alert_text = value["data"].get("text") elif "alert" in value: alert_text = value["alert"].get("text") raise exception_class(message, screen, stacktrace, alert_text) # type: ignore[call-arg] # mypy is not smart enough here > raise exception_class(message, screen, stacktrace) E selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <a class="clickable view-task-pods-activity-action-trigger" data-ember-action="" data-ember-action-467="467">...</a> is not clickable at point (180, 446). Other element would receive the click: <div class="events-table-section fill-flex-using-column relative">...</div> E (Session info: chrome=130.0.6723.69) E Stacktrace: E #0 0x563f02ef010a <unknown> E #1 0x563f02a0b460 <unknown> E #2 0x563f02a5eb26 <unknown> E #3 0x563f02a5caad <unknown> E #4 0x563f02a5a557 <unknown> E #5 0x563f02a59971 <unknown> E #6 0x563f02a4cf78 <unknown> E #7 0x563f02a7c012 <unknown> E #8 0x563f02a4c958 <unknown> E #9 0x563f02a7c1de <unknown> E #10 0x563f02a9aaf6 <unknown> E #11 0x563f02a7bdb3 <unknown> E #12 0x563f02a4ac10 <unknown> E #13 0x563f02a4bbee <unknown> E #14 0x563f02ebc39b <unknown> E #15 0x563f02ec0338 <unknown> E #16 0x563f02ea9ebc <unknown> E #17 0x563f02ec0eb7 <unknown> E #18 0x563f02e8f10f <unknown> E #19 0x563f02ede828 <unknown> E #20 0x563f02ede9f0 <unknown> E #21 0x563f02eeef86 <unknown> E #22 0x7f13918c7a94 <unknown> E #23 0x7f1391954a34 __clone /usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/errorhandler.py:229: ElementClickInterceptedException