Build: #6 failed

Job: Onezone data discovery querying failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees appropriate files after searching by json metadata value keyword[1oz 1op elasticsearch]: Test case result

The below summarizes the result of the test " user sees appropriate files after searching by json metadata value keyword[1oz 1op elasticsearch]" in build 6 of Onedata Products - gui acceptance pkg - feature-VFS-12310-turn-off-acc-tests-reruns-2 - Onezone data discovery querying.
Description
user sees appropriate files after searching by json metadata value keyword[1oz 1op elasticsearch]
Test class
gui.scenarios.test_onezone_data_discovery_querying
Method
test_user_sees_appropriate_files_after_searching_by_json_metadata_value_keyword[1oz_1op_elasticsearch]
Duration
2 mins
Status
Failed (New Failure)

Error Log

selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"tag name","selector":"iframe"}
  (Session info: chrome=115.0.5763.0); For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception
Stacktrace:
#0 0x5635ff0502b3 <unknown>
#1 0x5635fed802d7 <unknown>
#2 0x5635fedbe87b <unknown>
#3 0x5635fedbe971 <unknown>
#4 0x5635fedf8584 <unknown>
#5 0x5635feddddcd <unknown>
#6 0x5635fedf5fe9 <unknown>
#7 0x5635fedddb73 <unknown>
#8 0x5635fedb31ab <unknown>
#9 0x5635fedb3f4e <unknown>
#10 0x5635ff011668 <unknown>
#11 0x5635ff015627 <unknown>
#12 0x5635ff01fb8c <unknown>
#13 0x5635ff016253 <unknown>
#14 0x5635fefe4927 <unknown>
#15 0x5635ff03a018 <unknown>
#16 0x5635ff03a1a6 <unknown>
#17 0x5635ff048ee3 <unknown>
#18 0x7f5b2991ca94 <unknown>
#19 0x7f5b299a9a34 __clone
fixturefunc = <function open_data_discovery_of_harvester at 0x7f0accd84d60>
request = <FixtureRequest for <Function test_user_sees_appropriate_files_after_searching_by_json_metadata_value_keyword[1oz_1op_elasticsearch]>>
kwargs = {'browser_id': 'browser', 'data_discovery': <class 'tests.gui.utils.onezone.data_discovery_page.DataDiscoveryPage'>, 'harvester_name': 'harvester1', 'oz_page': <class 'tests.gui.utils.onezone.OZLoggedIn'>, ...}

    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)
tests/gui/meta_steps/onezone/data_discovery.py:177: in open_data_discovery_of_harvester
    assert_data_discovery_page(selenium, browser_id, data_discovery)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/steps/onezone/harvesters/data_discovery.py:25: in assert_data_discovery_page
    switch_to_iframe(selenium, browser_id, ".plugin-frame")
/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/common/miscellaneous.py:112: in switch_to_iframe
    iframe = driver.find_element(By.TAG_NAME, "iframe")
/usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/webdriver.py:748: in find_element
    return self.execute(Command.FIND_ELEMENT, {"using": by, "value": value})["value"]
/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 0x7f0acc890590>
response = {'status': 404, 'value': '{"value":{"error":"no such element","message":"no such element: Unable to locate element: {\...unknown>\\n#17 0x5635ff048ee3 \\u003Cunknown>\\n#18 0x7f5b2991ca94 \\u003Cunknown>\\n#19 0x7f5b299a9a34 __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.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"tag name","selector":"iframe"}
E         (Session info: chrome=115.0.5763.0); For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception
E       Stacktrace:
E       #0 0x5635ff0502b3 <unknown>
E       #1 0x5635fed802d7 <unknown>
E       #2 0x5635fedbe87b <unknown>
E       #3 0x5635fedbe971 <unknown>
E       #4 0x5635fedf8584 <unknown>
E       #5 0x5635feddddcd <unknown>
E       #6 0x5635fedf5fe9 <unknown>
E       #7 0x5635fedddb73 <unknown>
E       #8 0x5635fedb31ab <unknown>
E       #9 0x5635fedb3f4e <unknown>
E       #10 0x5635ff011668 <unknown>
E       #11 0x5635ff015627 <unknown>
E       #12 0x5635ff01fb8c <unknown>
E       #13 0x5635ff016253 <unknown>
E       #14 0x5635fefe4927 <unknown>
E       #15 0x5635ff03a018 <unknown>
E       #16 0x5635ff03a1a6 <unknown>
E       #17 0x5635ff048ee3 <unknown>
E       #18 0x7f5b2991ca94 <unknown>
E       #19 0x7f5b299a9a34 __clone

/usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/errorhandler.py:229: NoSuchElementException